結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
xyz600600
|
| 提出日時 | 2016-02-19 06:35:31 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 258 bytes |
| コンパイル時間 | 441 ms |
| コンパイル使用メモリ | 62,320 KB |
| 実行使用メモリ | 25,580 KB |
| 平均クエリ数 | 1000.00 |
| 最終ジャッジ日時 | 2024-07-16 08:36:22 |
| 合計ジャッジ時間 | 2,123 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 6 |
ソースコード
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
string line;
cout << setw(10);
cout.fill('0');
for ( int i = 0; i < 1000; i++ )
{
cout << i << endl;
getline( cin, line );
if ( line == "unlocked" ) {
break;
}
}
}
xyz600600