結果
問題 | No.264 じゃんけん |
ユーザー | matsuyoshi30 |
提出日時 | 2015-12-31 23:04:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 117 ms / 5,000 ms |
コード長 | 1,117 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 74,684 KB |
実行使用メモリ | 52,100 KB |
最終ジャッジ日時 | 2024-09-19 09:01:43 |
合計ジャッジ時間 | 3,405 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
52,060 KB |
testcase_01 | AC | 102 ms
41,100 KB |
testcase_02 | AC | 103 ms
41,192 KB |
testcase_03 | AC | 102 ms
41,112 KB |
testcase_04 | AC | 105 ms
41,224 KB |
testcase_05 | AC | 103 ms
41,412 KB |
testcase_06 | AC | 115 ms
40,860 KB |
testcase_07 | AC | 117 ms
40,996 KB |
testcase_08 | AC | 100 ms
52,100 KB |
ソースコード
import java.util.Scanner; class Test { public static void main(String[] args) { Scanner in = new Scanner(System.in); String xx = in.next(); String yy = in.next(); int x = Integer.parseInt(xx); int y = Integer.parseInt(yy); //0 -> ROCK, 1 -> SCISSORS, 2 -> PAPER //0 > 1, 1 > 2, 2 > 0 try { if(x == y) { System.out.println("Drew"); } switch(x) { case 0: if(y == 1) System.out.println("Won"); if(y == 2) System.out.println("Lost"); break; case 1: if(y == 0) System.out.println("Lost"); if(y == 2) System.out.println("Won"); break; case 2: if(y == 0) System.out.println("Won"); if(y == 1) System.out.println("Lost"); break; default: break; } } catch(Exception e) { System.exit(0); } } }