結果
問題 | No.304 鍵(1) |
ユーザー | nnasen |
提出日時 | 2017-10-02 03:31:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 472 bytes |
コンパイル時間 | 1,476 ms |
コンパイル使用メモリ | 166,488 KB |
実行使用メモリ | 40,016 KB |
最終ジャッジ日時 | 2024-07-16 15:27:21 |
合計ジャッジ時間 | 7,907 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> #define FOR(i,a,b) for(int i = (a); i < (b); ++i) #define REP(i,n) FOR(i,0,n) #define SZ(n) (int)(n).size() #define ALL(n) (n).begin(), (n).end() #define MOD 1000000007 using namespace std; typedef long long LL; typedef vector<int> VI; int main() { string re; REP(i, 10) { REP(j, 10) { REP(k, 10) { printf("%d%d%d\n", i, j, k); scanf("%s", re); if (re == "unlocked") return 0; } } } return 0; }