結果
問題 | No.304 鍵(1) |
ユーザー | Bwambocos |
提出日時 | 2017-06-17 15:11:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 350 bytes |
コンパイル時間 | 1,893 ms |
コンパイル使用メモリ | 166,036 KB |
実行使用メモリ | 40,272 KB |
最終ジャッジ日時 | 2024-07-17 01:14:48 |
合計ジャッジ時間 | 8,091 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include "bits/stdc++.h" #define MOD 1000000007 #define INF 11234567890 #define in std::cin #define out std::cout #define rep(i,N) for(LL i=0;i<N;++i) typedef long long int LL; int main() { rep(num, 1000) { std::string input; out << std::setfill('0') << std::setw(3) << num; in >> input; if (input == "unlocked") { break; } } return 0; }