結果

問題 No.331 CodeRunnerでやれ
ユーザー 37zigen37zigen
提出日時 2016-05-28 13:02:44
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 523 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 78,708 KB
実行使用メモリ 75,296 KB
平均クエリ数 11218.71
最終ジャッジ日時 2024-07-16 23:49:34
合計ジャッジ時間 16,346 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
58,232 KB
testcase_01 AC 335 ms
58,164 KB
testcase_02 AC 976 ms
61,904 KB
testcase_03 AC 663 ms
59,716 KB
testcase_04 AC 537 ms
63,972 KB
testcase_05 AC 702 ms
64,424 KB
testcase_06 AC 922 ms
70,792 KB
testcase_07 AC 3,614 ms
74,944 KB
testcase_08 AC 1,676 ms
64,500 KB
testcase_09 AC 4,412 ms
75,296 KB
testcase_10 AC 2,782 ms
75,172 KB
testcase_11 AC 3,174 ms
75,276 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		//F,B,L,R
		while(true){
			int r=(int)(Math.random()*4);
			if(r==0){
				System.out.println("F");
			}else if(r==1){
				System.out.println("B");
			}else if(r==2){
				System.out.println("L");
			}else if(r==3){
				System.out.println("R");
			}
			String s=sc.nextLine();
			if(s.equals("Merry Christmas!")){
				return;
			}
		}
	}
}
0