結果
問題 |
No.304 鍵(1)
|
ユーザー |
|
提出日時 | 2020-12-16 21:09:29 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 1,708 ms |
コンパイル使用メモリ | 169,200 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 1000.00 |
最終ジャッジ日時 | 2024-07-17 10:14:02 |
合計ジャッジ時間 | 3,303 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 6 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; for (int i = 0; i < 1000; i++) { s = to_string(i); cout << s << endl; cin >> s; if (s == "unlocked") return 0; } return 0; }