結果
問題 | No.304 鍵(1) |
ユーザー | nninjinn00 |
提出日時 | 2017-02-20 20:58:12 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#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; } }