結果
問題 | No.264 じゃんけん |
ユーザー | yu_017 |
提出日時 | 2019-01-13 19:11:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 120 ms / 5,000 ms |
コード長 | 381 bytes |
コンパイル時間 | 2,852 ms |
コンパイル使用メモリ | 74,984 KB |
実行使用メモリ | 41,372 KB |
最終ジャッジ日時 | 2024-06-07 17:40:46 |
合計ジャッジ時間 | 4,480 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
39,640 KB |
testcase_01 | AC | 98 ms
40,940 KB |
testcase_02 | AC | 107 ms
41,208 KB |
testcase_03 | AC | 116 ms
41,372 KB |
testcase_04 | AC | 120 ms
40,892 KB |
testcase_05 | AC | 120 ms
41,004 KB |
testcase_06 | AC | 107 ms
40,940 KB |
testcase_07 | AC | 103 ms
39,648 KB |
testcase_08 | AC | 116 ms
40,684 KB |
ソースコード
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"; }else { if(you==0)you+=3; if(me+1==you) { res="Won"; }else { res="Lost"; } } System.out.println(res); } }