結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
dnish
|
| 提出日時 | 2017-07-04 00:44:51 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 236 bytes |
| コンパイル時間 | 1,537 ms |
| コンパイル使用メモリ | 165,924 KB |
| 実行使用メモリ | 25,220 KB |
| 平均クエリ数 | 1000.00 |
| 最終ジャッジ日時 | 2024-07-16 13:54:26 |
| 合計ジャッジ時間 | 3,704 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 6 |
ソースコード
#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int) N;i++)
#define p(s) cout<<(s)<<endl
using namespace std;
int main(){
string s;
REP(i,0,1000){
printf("%03\n",i);
cin>>s;
if(s=="unlocked") break;
}
return 0;
}
dnish