結果
問題 | No.304 鍵(1) |
ユーザー | ant2357 |
提出日時 | 2016-07-08 00:05:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 1,661 ms |
コンパイル使用メモリ | 167,184 KB |
実行使用メモリ | 40,272 KB |
最終ジャッジ日時 | 2024-07-17 00:01:04 |
合計ジャッジ時間 | 8,120 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include "bits/stdc++.h" #define REP(i, n) for(decltype(n) i = 0; i < (n); i++) #define REP2(i, x, n) for(decltype(x) i = (x); i < (n); i++) #define RREP(i, n) for (decltype(n) i = (n) - 1;i >= 0; i--) #define ALL(a) (a).begin(),(a).end() #define SORT(c) sort((c).begin(),(c).end()) #define DESCSORT(c) sort(c.begin(), c.end(), greater<int>()) #define LL long long int #define LD long double #define PI 3.14159265358979 #define _CRT_SECURE_NO_WARNINGS using namespace std; //================================================ int main() { ios::sync_with_stdio(false); cin.tie(0); REP(i, 10) { REP(j, 10) { REP(k, 10) { cout << i << j << k << "\n"; string S; cin >> S; if (S == "unlocked") return 0; } } } return 0; }