結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
nninjinn00
|
| 提出日時 | 2017-02-20 20:58:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 275 bytes |
| コンパイル時間 | 667 ms |
| コンパイル使用メモリ | 56,940 KB |
| 実行使用メモリ | 25,604 KB |
| 平均クエリ数 | 1000.00 |
| 最終ジャッジ日時 | 2024-07-16 12:22:37 |
| 合計ジャッジ時間 | 2,917 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 6 |
ソースコード
#include <iostream>
using namespace std;
int main() {
string str;
for(int i=0;i<1000;i++){
if(str=="unlocked")
break;
else{
if(i<10)
cout << 00 << i << endl;
else if(i<100)
cout << 0 << i << endl;
else
cout << i << endl;
}
cin >> str;
}
}
nninjinn00