結果
問題 | No.304 鍵(1) |
ユーザー | face4 |
提出日時 | 2018-04-24 20:04:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 335 bytes |
コンパイル時間 | 620 ms |
コンパイル使用メモリ | 66,384 KB |
実行使用メモリ | 25,452 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 01:42:57 |
合計ジャッジ時間 | 1,449 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
25,220 KB |
testcase_01 | AC | 24 ms
24,836 KB |
testcase_02 | AC | 55 ms
25,220 KB |
testcase_03 | AC | 25 ms
24,836 KB |
testcase_04 | AC | 38 ms
24,964 KB |
testcase_05 | AC | 25 ms
25,452 KB |
ソースコード
#include<iostream> using namespace std; int main(){ int n = 0; while(true){ string s; if(n < 100) s.append("0"); if(n < 10) s.append("0"); s.append(to_string(n)); cout << s << endl << flush; getline(cin, s); if(s == "unlocked") break; n++; } return 0; }