結果
問題 | No.305 鍵(2) |
ユーザー | Konton7 |
提出日時 | 2020-01-14 23:15:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 202,328 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 92.62 |
最終ジャッジ日時 | 2024-07-16 19:16:28 |
合計ジャッジ時間 | 4,675 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,580 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 24 ms
24,580 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
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 = ret_collect; collect = ret_collect; } s[i]++; } ans += collect_max + '0'; } cout << ans << endl; return 0; }