結果

問題 No.264 じゃんけん
ユーザー OGNMOGNM
提出日時 2016-11-12 21:39:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-05-04 11:07:33
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,356 KB
testcase_01 AC 123 ms
41,848 KB
testcase_02 AC 113 ms
41,208 KB
testcase_03 AC 122 ms
41,324 KB
testcase_04 AC 122 ms
41,572 KB
testcase_05 AC 111 ms
41,280 KB
testcase_06 AC 112 ms
41,096 KB
testcase_07 AC 101 ms
41,448 KB
testcase_08 AC 111 ms
41,572 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