結果
問題 | No.264 じゃんけん |
ユーザー | koukonko |
提出日時 | 2015-12-22 14:16:39 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 607 bytes |
コンパイル時間 | 2,023 ms |
コンパイル使用メモリ | 73,132 KB |
実行使用メモリ | 36,976 KB |
最終ジャッジ日時 | 2024-09-18 18:36:28 |
合計ジャッジ時間 | 3,198 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
36,976 KB |
testcase_01 | AC | 54 ms
36,832 KB |
testcase_02 | AC | 53 ms
36,868 KB |
testcase_03 | AC | 53 ms
36,856 KB |
testcase_04 | AC | 54 ms
36,664 KB |
testcase_05 | AC | 53 ms
36,836 KB |
testcase_06 | AC | 52 ms
36,796 KB |
testcase_07 | AC | 53 ms
36,564 KB |
testcase_08 | AC | 53 ms
36,976 KB |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { String[] line = buff.readLine().split(" "); int me = Integer.parseInt(line[0]); int you = Integer.parseInt(line[1]); if (me == you) { System.out.println("Drew"); } else if (me + 1 == you || (me == 2 && you == 0)) { System.out.println("Won"); } else { System.out.println("Lost"); } } catch (Exception e) { e.getStackTrace(); } } }