結果

問題 No.264 じゃんけん
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:28:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 343 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-11-15 22:42:13
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,884 KB
testcase_01 AC 120 ms
53,920 KB
testcase_02 AC 120 ms
54,252 KB
testcase_03 AC 122 ms
53,952 KB
testcase_04 AC 123 ms
53,896 KB
testcase_05 AC 119 ms
53,948 KB
testcase_06 AC 110 ms
52,856 KB
testcase_07 AC 125 ms
54,016 KB
testcase_08 AC 110 ms
53,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt(),k=sc.nextInt();
		if(n==k)System.out.println("Drew");
		else if(n-k==2 || n-k==-1)System.out.println("Won");
		else if(n-k==1 || n-k==-2)System.out.println("Lost");
	}
}
0