結果
問題 | No.264 じゃんけん |
ユーザー | villach |
提出日時 | 2017-10-13 15:45:35 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 356 bytes |
コンパイル時間 | 3,073 ms |
コンパイル使用メモリ | 74,960 KB |
実行使用メモリ | 41,340 KB |
最終ジャッジ日時 | 2024-11-17 11:24:56 |
合計ジャッジ時間 | 4,733 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 117 ms
41,124 KB |
testcase_02 | AC | 117 ms
41,216 KB |
testcase_03 | AC | 110 ms
39,752 KB |
testcase_04 | WA | - |
testcase_05 | AC | 117 ms
40,864 KB |
testcase_06 | AC | 106 ms
39,948 KB |
testcase_07 | AC | 121 ms
41,340 KB |
testcase_08 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class N264 { 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"); }if(a - b == -1 || a - b == 2){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }