結果
問題 | No.304 鍵(1) |
ユーザー | @abcde |
提出日時 | 2019-04-20 23:32:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 408 bytes |
コンパイル時間 | 1,381 ms |
コンパイル使用メモリ | 158,732 KB |
実行使用メモリ | 39,848 KB |
最終ジャッジ日時 | 2024-07-16 17:08:16 |
合計ジャッジ時間 | 7,974 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { // 1. 入力情報取得. string judge; // 2. 解錠をチェックし, 出力. int i = 0; while(1){ cin >> judge; if(judge == "unlocked") return 0; cout << setfill('0') << setw(3) << i << "\n" << flush; i++; if(i > 999) return 0; } // 3. 後処理. return 0; }