結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
fumi6328
|
| 提出日時 | 2018-09-14 21:46:45 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 357 bytes |
| コンパイル時間 | 498 ms |
| コンパイル使用メモリ | 64,664 KB |
| 実行使用メモリ | 40,640 KB |
| 最終ジャッジ日時 | 2024-07-16 16:07:34 |
| 合計ジャッジ時間 | 6,984 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main()
{
string ans;
for(int i = 0; i < 9; i++){
for(int j = 0; j < 9; j++){
for(int k = 0; k < 9; k++){
cout << i << j << k;
cin >> ans;
if(ans == "unlocked") return 0;
}
}
}
}
fumi6328