結果
問題 | No.264 じゃんけん |
ユーザー | l1267976 |
提出日時 | 2017-03-07 22:09:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 3,277 ms |
コンパイル使用メモリ | 78,452 KB |
実行使用メモリ | 54,416 KB |
最終ジャッジ日時 | 2024-06-23 17:59:59 |
合計ジャッジ時間 | 5,081 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,044 KB |
testcase_01 | AC | 126 ms
54,040 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 127 ms
54,332 KB |
testcase_05 | AC | 127 ms
54,336 KB |
testcase_06 | AC | 127 ms
53,920 KB |
testcase_07 | WA | - |
testcase_08 | AC | 128 ms
54,284 KB |
ソースコード
import java.util.Scanner; public class No264 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int diff = Math.abs(n - k); switch (diff) { case 0: System.out.println("Drew"); break; case 1: if (n < k) System.out.println("Won"); else System.out.println("Lose"); break; case 2: if (n < k) System.out.println("Lose"); else System.out.println("Won"); break; } sc.close(); } }