結果
問題 | No.305 鍵(2) |
ユーザー | Konton7 |
提出日時 | 2020-01-14 23:16:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 747 bytes |
コンパイル時間 | 2,595 ms |
コンパイル使用メモリ | 201,808 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 92.62 |
最終ジャッジ日時 | 2024-07-17 02:26:09 |
合計ジャッジ時間 | 4,330 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
24,836 KB |
testcase_01 | AC | 33 ms
24,964 KB |
testcase_02 | AC | 32 ms
25,220 KB |
testcase_03 | AC | 32 ms
25,204 KB |
testcase_04 | AC | 32 ms
24,836 KB |
testcase_05 | AC | 32 ms
25,220 KB |
testcase_06 | AC | 27 ms
25,220 KB |
testcase_07 | AC | 32 ms
25,220 KB |
testcase_08 | AC | 32 ms
24,452 KB |
testcase_09 | AC | 32 ms
24,836 KB |
testcase_10 | AC | 33 ms
24,964 KB |
testcase_11 | AC | 32 ms
24,580 KB |
testcase_12 | AC | 32 ms
24,836 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:28:28: warning: 'collect_max' may be used uninitialized [-Wmaybe-uninitialized] 28 | ans += collect_max + '0'; | ~~~~~~~~~~~~^~~~~ main.cpp:9:18: note: 'collect_max' was declared here 9 | int collect, collect_max, ret_collect; | ^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int collect, collect_max, ret_collect; int const digit = 10; string s, ans, ret_string; string const s0 = "0000000000"; for (int i = 0; i < digit; i++){ s = s0; collect = -1; for (int j = 0; j < digit; j++){ cout << s << endl; cin >> ret_collect >> ret_string; if (ret_string == "unlocked") return 0; else{ if (ret_collect > collect) collect_max = j; collect = ret_collect; } s[i]++; } ans += collect_max + '0'; } cout << ans << endl; return 0; }