結果
問題 | No.264 じゃんけん |
ユーザー | yui |
提出日時 | 2017-02-20 17:33:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 398 bytes |
コンパイル時間 | 2,139 ms |
コンパイル使用メモリ | 74,140 KB |
実行使用メモリ | 41,228 KB |
最終ジャッジ日時 | 2024-06-09 16:26:16 |
合計ジャッジ時間 | 3,716 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
41,112 KB |
testcase_01 | WA | - |
testcase_02 | AC | 109 ms
41,164 KB |
testcase_03 | WA | - |
testcase_04 | AC | 96 ms
40,112 KB |
testcase_05 | WA | - |
testcase_06 | AC | 96 ms
40,100 KB |
testcase_07 | WA | - |
testcase_08 | AC | 102 ms
40,108 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int numA = sc.nextInt(); int numB = sc.nextInt(); if(numA==numB){ System.out.println("Drew"); }else if((numA==0)&&(numB==2)){ System.out.println("Lost"); }else if(numA<numB){ System.out.println("Lose"); }else{ System.out.println("Won"); } } }