結果
問題 | No.304 鍵(1) |
ユーザー | fumi6328 |
提出日時 | 2018-09-14 21:46:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 357 bytes |
コンパイル時間 | 498 ms |
コンパイル使用メモリ | 64,664 KB |
実行使用メモリ | 40,640 KB |
最終ジャッジ日時 | 2024-07-16 16:07:34 |
合計ジャッジ時間 | 6,984 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { string ans; for(int i = 0; i < 9; i++){ for(int j = 0; j < 9; j++){ for(int k = 0; k < 9; k++){ cout << i << j << k; cin >> ans; if(ans == "unlocked") return 0; } } } }