結果

問題 No.264 じゃんけん
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 18:14:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 4,103 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-07-04 19:17:20
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,368 KB
testcase_01 AC 123 ms
41,664 KB
testcase_02 AC 123 ms
41,360 KB
testcase_03 AC 119 ms
41,284 KB
testcase_04 AC 126 ms
41,216 KB
testcase_05 AC 123 ms
41,492 KB
testcase_06 AC 122 ms
41,704 KB
testcase_07 AC 129 ms
41,536 KB
testcase_08 AC 127 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Janken {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt(), K = s.nextInt();
		s.close();
		if(N == K){
			System.out.println("Drew");
		}else if(N-K == -1 || N-K == 2){
			System.out.println("Won");
		}else{
			System.out.println("Lost");
		}

	}

}
0