結果
問題 | No.304 鍵(1) |
ユーザー | lunnear |
提出日時 | 2018-05-07 16:42:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 245 bytes |
コンパイル時間 | 1,421 ms |
コンパイル使用メモリ | 62,384 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 01:43:29 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
25,220 KB |
testcase_01 | AC | 28 ms
24,836 KB |
testcase_02 | AC | 60 ms
25,220 KB |
testcase_03 | AC | 28 ms
24,836 KB |
testcase_04 | AC | 45 ms
25,220 KB |
testcase_05 | AC | 27 ms
25,196 KB |
ソースコード
#include <iostream> #include <iomanip> int main() { char ret[10]; for (int num = 0; num < 1000; num++) { std::cout << std::setfill('0') << std::setw(3) << num << std::endl; std::cin >> ret; if (ret[0] == 'u') break; } return 0; }