結果
問題 | No.264 じゃんけん |
ユーザー | youthfuldays072 |
提出日時 | 2018-05-20 11:58:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 486 bytes |
コンパイル時間 | 1,959 ms |
コンパイル使用メモリ | 74,596 KB |
実行使用メモリ | 41,516 KB |
最終ジャッジ日時 | 2024-06-28 14:36:17 |
合計ジャッジ時間 | 3,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
40,300 KB |
testcase_01 | AC | 132 ms
41,264 KB |
testcase_02 | AC | 113 ms
40,072 KB |
testcase_03 | AC | 125 ms
41,104 KB |
testcase_04 | AC | 128 ms
41,516 KB |
testcase_05 | AC | 113 ms
39,884 KB |
testcase_06 | AC | 127 ms
41,152 KB |
testcase_07 | AC | 125 ms
41,404 KB |
testcase_08 | AC | 128 ms
41,252 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int myhand=sc.nextInt(); int comhand=sc.nextInt(); System.out.println(judge(myhand,comhand)); } static String judge(int myhand,int comhand) { int judge=(myhand-comhand+3)%3; if(judge==0) { return "Drew"; }else if(judge==2) { return "Won"; }else { return "Lost"; } } }