結果
問題 | No.305 鍵(2) |
ユーザー | hanorver |
提出日時 | 2015-11-27 22:51:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 620 ms |
コンパイル使用メモリ | 56,932 KB |
実行使用メモリ | 25,348 KB |
平均クエリ数 | 46.15 |
最終ジャッジ日時 | 2024-07-16 06:39:26 |
合計ジャッジ時間 | 2,399 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,836 KB |
testcase_01 | WA | - |
testcase_02 | AC | 24 ms
25,220 KB |
testcase_03 | AC | 22 ms
24,964 KB |
testcase_04 | WA | - |
testcase_05 | AC | 25 ms
24,836 KB |
testcase_06 | AC | 20 ms
24,836 KB |
testcase_07 | AC | 22 ms
24,836 KB |
testcase_08 | AC | 24 ms
25,220 KB |
testcase_09 | WA | - |
testcase_10 | AC | 21 ms
25,216 KB |
testcase_11 | AC | 22 ms
25,220 KB |
testcase_12 | AC | 22 ms
25,220 KB |
ソースコード
#include<iostream> #include<string> void print(int pass[]) { for (int i = 0; i < 10; i++) { std::cout << pass[i]; } std::cout << std::endl; } int main() { int pass[] = {0,0,0,0,0,0,0,0,0,0}; int ans = 0; std::string s; print(pass); std::cin >> ans >> s; while (ans != 10) { for (int i = 0; i < 10; i++) { for (int j = 1; j < 10; j++) { int tmp; std::string stmp; pass[i] = j; print(pass); std::cin >> tmp >> stmp; if (stmp == "10") return 0; if (tmp > ans) { ans = tmp; break; } if (tmp < ans) { pass[i] -= 1; break; } } } } return 0; }