結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
nninjinn00
|
| 提出日時 | 2017-02-20 21:04:17 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 457 ms |
| コンパイル使用メモリ | 55,460 KB |
| 実行使用メモリ | 39,632 KB |
| 最終ジャッジ日時 | 2024-07-17 00:49:39 |
| 合計ジャッジ時間 | 6,707 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
#include <iostream>
#include <cstdio>
using namespace std;
int main() {
string str;
for(int i=0;i<1000;i++){
if(str=="unlocked")
break;
else
printf("%03d",i);
cin >> str;
}
}
nninjinn00