結果

問題 No.264 じゃんけん
ユーザー papipenpapipen
提出日時 2017-03-23 23:26:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-07-05 18:56:48
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,308 KB
testcase_01 AC 130 ms
41,508 KB
testcase_02 AC 115 ms
39,960 KB
testcase_03 AC 121 ms
41,232 KB
testcase_04 AC 123 ms
41,124 KB
testcase_05 AC 120 ms
41,176 KB
testcase_06 AC 122 ms
41,484 KB
testcase_07 AC 122 ms
40,968 KB
testcase_08 AC 128 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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