結果
問題 | No.264 じゃんけん |
ユーザー | yu_017 |
提出日時 | 2019-01-13 19:07:26 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 355 bytes |
コンパイル時間 | 3,698 ms |
コンパイル使用メモリ | 74,400 KB |
実行使用メモリ | 56,464 KB |
最終ジャッジ日時 | 2024-06-07 17:37:30 |
合計ジャッジ時間 | 4,838 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 117 ms
41,092 KB |
testcase_02 | AC | 121 ms
41,224 KB |
testcase_03 | AC | 120 ms
41,028 KB |
testcase_04 | WA | - |
testcase_05 | AC | 116 ms
41,320 KB |
testcase_06 | AC | 130 ms
39,724 KB |
testcase_07 | AC | 117 ms
41,068 KB |
testcase_08 | WA | - |
ソースコード
import java.util.Scanner; public class A000264 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int me = sc.nextInt(); int you = sc.nextInt(); sc.close(); String res = ""; if(you==me)res="Drew"; if(you==0)you+=3; if(me+1==you) { res="Won"; }else { res="Lost"; } System.out.println(res); } }