結果
問題 | No.304 鍵(1) |
ユーザー |
|
提出日時 | 2020-12-16 21:10:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 1,591 ms |
コンパイル使用メモリ | 169,348 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 1000.00 |
最終ジャッジ日時 | 2024-07-17 10:14:14 |
合計ジャッジ時間 | 3,375 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 << setw(3) << s << endl; cin >> s; if (s == "unlocked") return 0; } return 0; }