結果
問題 | No.304 鍵(1) |
ユーザー | umaumax |
提出日時 | 2017-05-02 03:18:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 470 ms |
コンパイル使用メモリ | 62,336 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 833.50 |
最終ジャッジ日時 | 2024-07-16 12:52:16 |
合計ジャッジ時間 | 1,832 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,660 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <iomanip> #include <iostream> using namespace std; int main(int argc, char* argv[]) { int n = 0; string s; cout << setfill('0') << setw(3); for (int n = 0; n <= 999; n++) { cout << n << endl << flush; cin >> s; if (s == "unlocked") break; } return 0; }