結果
| 問題 | 
                            No.304 鍵(1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             keisuke6
                         | 
                    
| 提出日時 | 2022-10-31 22:02:02 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 75 ms / 2,000 ms | 
| コード長 | 283 bytes | 
| コンパイル時間 | 1,616 ms | 
| コンパイル使用メモリ | 193,176 KB | 
| 最終ジャッジ日時 | 2025-02-08 16:23:18 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 6 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    srand((unsigned)time(NULL));
    for(int i=0;i<1e9;i++){
        for(int j=0;j<3;j++) cout<<rand()%10;
        cout<<endl;
        string s;
        cin>>s;
        if(s[0] == 'u') break;
    }
}
            
            
            
        
            
keisuke6