結果
問題 | No.264 じゃんけん |
ユーザー | Haleakala |
提出日時 | 2018-02-18 16:51:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 899 bytes |
コンパイル時間 | 3,616 ms |
コンパイル使用メモリ | 75,460 KB |
実行使用メモリ | 54,200 KB |
最終ジャッジ日時 | 2024-06-30 04:29:26 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
53,904 KB |
testcase_01 | AC | 124 ms
53,992 KB |
testcase_02 | AC | 127 ms
54,112 KB |
testcase_03 | AC | 121 ms
53,972 KB |
testcase_04 | AC | 124 ms
54,104 KB |
testcase_05 | AC | 123 ms
54,064 KB |
testcase_06 | AC | 126 ms
53,920 KB |
testcase_07 | AC | 128 ms
53,832 KB |
testcase_08 | AC | 122 ms
54,200 KB |
ソースコード
import java.util.Scanner; public class Answer { public static void main(String str[]) { Scanner sc = new Scanner(System.in); //ぐー, ちょき, ぱーをそれぞれ 0, 1, 2とし、1つ目に自分のが2つ目に相手のが与えられます。 int me = Integer.valueOf(sc.next()); int you = Integer.valueOf(sc.next()); if(me == you) { System.out.println("Drew"); } else if(me == 0 && you == 1){ System.out.println("Won"); } else if(me == 0 && you == 2){ System.out.println("Lost"); } else if(me == 1 && you == 0){ System.out.println("Lost"); } else if(me == 1 && you == 2){ System.out.println("Won"); } else if(me == 2 && you == 0){ System.out.println("Won"); } else if(me == 2 && you == 1){ System.out.println("Lost"); } } }