結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
cormoran
|
| 提出日時 | 2016-05-31 18:10:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 309 bytes |
| コンパイル時間 | 538 ms |
| コンパイル使用メモリ | 65,288 KB |
| 実行使用メモリ | 40,140 KB |
| 最終ジャッジ日時 | 2024-07-16 23:52:13 |
| 合計ジャッジ時間 | 7,041 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <iomanip>
using namespace std;
int main() {
int n = 0;
cout.fill('0');
while(true) {
string s; cin >> s;
if(s == "unlocked") break;
cout << setw(3) << n++ << endl;
cout.flush();
}
return 0;
}
cormoran