結果
問題 | No.304 鍵(1) |
ユーザー | pekempey |
提出日時 | 2015-11-27 22:31:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 736 bytes |
コンパイル時間 | 1,702 ms |
コンパイル使用メモリ | 158,948 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 995.83 |
最終ジャッジ日時 | 2024-07-16 06:33:59 |
合計ジャッジ時間 | 3,020 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 60 ms
24,836 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <bits/stdc++.h> #define GET_MACRO(a, b, c, NAME, ...) NAME #define rep(...) GET_MACRO(__VA_ARGS__, rep3, rep2)(__VA_ARGS__) #define rep2(i, a) rep3 (i, 0, a) #define rep3(i, a, b) for (int i = (a); i < (b); i++) #define repr(...) GET_MACRO(__VA_ARGS__, repr3, repr2)(__VA_ARGS__) #define repr2(i, a) repr3 (i, 0, a) #define repr3(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define chmin(a, b) ((b) < a && (a = (b), true)) #define chmax(a, b) (a < (b) && (a = (b), true)) using namespace std; typedef long long ll; int main() { rep (i, 10) rep (j, 10) rep (k, 10) { string s; s += i + '0'; s += j + '0'; s += k + '0'; cout << s << endl; string res; cin >> res; if (res == "unlocked") break; } return 0; }