結果
問題 | No.304 鍵(1) |
ユーザー |
|
提出日時 | 2016-03-11 02:46:21 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 2,327 ms |
コンパイル使用メモリ | 74,548 KB |
実行使用メモリ | 70,984 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-07-16 08:49:22 |
合計ジャッジ時間 | 4,628 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 6 |
ソースコード
import java.util.Date; import java.util.Scanner; public class Main{ public static void main(String[] args){ long exec_time=new Date().getTime(); Scanner sc=new Scanner(System.in); for(int i=0;i<10;i++){ for(int j=0;j<10;j++){ for(int k=0;k<10;k++){ System.out.println(i+j+k); System.out.flush(); String str=sc.next(); if(str.charAt(0)=='u') return; } } } } }