結果

問題 No.264 じゃんけん
ユーザー OGNMOGNM
提出日時 2016-11-12 21:39:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 49,924 KB
最終ジャッジ日時 2024-11-25 21:37:18
合計ジャッジ時間 4,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
49,856 KB
testcase_01 AC 123 ms
49,860 KB
testcase_02 AC 119 ms
49,148 KB
testcase_03 AC 124 ms
49,576 KB
testcase_04 AC 111 ms
48,508 KB
testcase_05 AC 109 ms
48,928 KB
testcase_06 AC 110 ms
48,820 KB
testcase_07 AC 119 ms
49,924 KB
testcase_08 AC 113 ms
49,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Study_01 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        int n1 = sc.nextInt();
        int n2 = sc.nextInt();
        if(n1 == n2){
        	System.out.println("Drew");
        } else if((n1 == 0 && n2 == 1)||(n1==1 && n2 == 2) ||(n1==2 && n2==0)){
        	System.out.println("Won");        	
        } else if((n1 == 0 && n2 == 2)||(n1==1 && n2 == 0) ||(n1==2 && n2==1)){
        	System.out.println("Lost");
        }	
    }
}
0