結果
問題 | No.264 じゃんけん |
ユーザー | QED0302 |
提出日時 | 2018-05-10 16:23:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 326 bytes |
コンパイル時間 | 3,222 ms |
コンパイル使用メモリ | 74,564 KB |
実行使用メモリ | 41,336 KB |
最終ジャッジ日時 | 2024-06-28 03:00:41 |
合計ジャッジ時間 | 4,990 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,132 KB |
testcase_01 | WA | - |
testcase_02 | AC | 121 ms
40,276 KB |
testcase_03 | WA | - |
testcase_04 | AC | 126 ms
41,072 KB |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
40,984 KB |
testcase_07 | WA | - |
testcase_08 | AC | 114 ms
40,052 KB |
ソースコード
import java.util.Scanner; public class junken{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int me = sc.nextInt(); int you = sc.nextInt(); if(me == you){ System.out.println("Drew"); }else if(me > you){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }