哈爾濱工業大學2023年複試上機題 解題報告

2021-06-05 02:27:32 字數 1890 閱讀 6884

九度oj題目1045:百雞問題

時間限制:1 秒  記憶體限制:32 兆  特殊判題:否  提交:1865  解決:685

題目描述:

用小於等於n元去買100隻雞,大雞5元/只,小雞3元/只,還有1/3元每只的一種小雞,分別記為x只,y只,z只。程式設計求解x,y,z所有可能解。

輸入:測試資料有多組,輸入n。

輸出:對於每組輸入,請輸出x,y,z所有可行解,按照x,y,z依次增大的順序輸出。

樣例輸入:

40樣例輸出:

x=0,y=0,z=100

x=0,y=1,z=99

x=0,y=2,z=98

x=1,y=0,z=99

#include #include using namespace std;

void output( int x, int y, int z )

int main()

if( y==0 )

flag = 1;

break;

}if( flag ) break;

} }system("pause");//

return 0;

}

九度oj題目1046:求最大值

時間限制:1 秒  記憶體限制:32 兆  特殊判題:否  提交:2027  解決:790

題目描述:

輸入10個數,要求輸出其中的最大值。

輸入:測試資料有多組,每組10個數。

輸出:對於每組輸入,請輸出其最大值(有回車)。

樣例輸入:

10 22 23 152 65 79 85 96 32 1

樣例輸出:

max=152

#include #include using namespace std;

int main()

printf("max=%d\n",m);

}return 0;

}

九度oj題目1047:素數判定

時間限制:1 秒  記憶體限制:32 兆  特殊判題:否  提交:1575  解決:690

題目描述:

給定乙個數n,要求判斷其是否為素數(0,1,負數都是非素數)。

輸入:測試資料有多組,每組輸入乙個數n。

輸出:對於每組輸入,若是素數則輸出yes,否則輸入no。

樣例輸入:

13樣例輸出:

yes

#include #include #include #include using namespace std;

#define n 1000000

#define d 1000

bool prime[n];

void init()

//while(1);//

return 0;

}

九度oj題目1049:字串去特定字元

時間限制:1 秒  記憶體限制:32 兆  特殊判題:否  提交:1607  解決:707

題目描述:

輸入字串s和字元c,要求去掉s中所有的c字元,並輸出結果。

輸入:測試資料有多組,每組輸入字串s和字元c。

輸出:對於每組輸入,輸出去除c字元後的結果。

樣例輸入:

heallo

a樣例輸出:

hello

#include using namespace std;

int main()

//system("pause");

return 0;

}

2023年領域新星 覃立波 哈爾濱工業大學

2020年領域新星 覃立波,哈爾濱工業大學社會計算與資訊檢索研究中心在讀博士生,師從車萬翔教授。研究方向為自然語言處理和面向任務的對話系統,尤其是面向任務的對話系統中的遷移學習。在頂級nlp ai會議和期刊上發表了10多篇 包括acl,emnlp,coling,aaai,ijcai,taslp等。是...

西北工業大學複試上機題2019 3

題目描述 判斷ip位址是否合法,n行,以字串形式輸入,格式為a.b.c.d,每個均為整數,輸出判斷是否為有效ip,每個數均在 0,255 之間。是輸出yes否no 輸入樣例 2 1.2.3.4 172.168.0.300 輸出 yes no include include include using...

Hoj 哈爾濱工業大學 1867 經理的煩惱

樹狀陣列入門,對這種被動接受的東西,總是不習慣 code include include include include include include include include include include include include include include include i...