結果

問題 No.264 じゃんけん
ユーザー KahoMatsumotoKahoMatsumoto
提出日時 2017-05-26 23:33:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-09-19 20:13:22
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,168 KB
testcase_01 AC 129 ms
54,172 KB
testcase_02 AC 129 ms
54,056 KB
testcase_03 AC 127 ms
54,096 KB
testcase_04 AC 114 ms
52,788 KB
testcase_05 AC 114 ms
52,984 KB
testcase_06 AC 126 ms
54,064 KB
testcase_07 AC 128 ms
54,104 KB
testcase_08 AC 126 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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