結果
問題 | No.305 鍵(2) |
ユーザー | ldsyb |
提出日時 | 2016-05-05 17:16:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 505 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 68,040 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 53.46 |
最終ジャッジ日時 | 2024-07-16 23:40:22 |
合計ジャッジ時間 | 1,953 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,836 KB |
testcase_01 | AC | 27 ms
24,964 KB |
testcase_02 | AC | 26 ms
24,580 KB |
testcase_03 | AC | 26 ms
24,836 KB |
testcase_04 | AC | 27 ms
24,952 KB |
testcase_05 | AC | 28 ms
25,220 KB |
testcase_06 | AC | 26 ms
25,220 KB |
testcase_07 | AC | 27 ms
25,220 KB |
testcase_08 | AC | 28 ms
24,964 KB |
testcase_09 | AC | 27 ms
25,220 KB |
testcase_10 | AC | 27 ms
24,964 KB |
testcase_11 | AC | 27 ms
24,580 KB |
testcase_12 | AC | 27 ms
24,964 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:15:30: warning: 'keep' may be used uninitialized [-Wmaybe-uninitialized] 15 | else if(x > keep){ | ^~ main.cpp:7:33: note: 'keep' was declared here 7 | for(int i = 0,x,keep;i < 10;i++){ | ^~~~
ソースコード
#include <iostream> using namespace std; int main(){ string ans = "",gomi; for(int digit = 0;digit < 10;digit++){ for(int i = 0,x,keep;i < 10;i++){ for(int j = 0;j < digit;j++) cout << '0'; cout << i; for(int j = digit + 1;j < 10;j++) cout << '0'; cout << endl; cin >> x >> gomi; if(x == 10) return 0; if(i == 0) keep = x; else if(x > keep){ ans += to_string(i); break; }else if(x < keep){ ans += to_string(i - 1); break; } } } cout << ans << endl; }