結果
問題 | No.264 じゃんけん |
ユーザー | clamd |
提出日時 | 2016-12-10 12:19:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 632 bytes |
コンパイル時間 | 3,293 ms |
コンパイル使用メモリ | 74,596 KB |
実行使用メモリ | 54,196 KB |
最終ジャッジ日時 | 2024-05-06 16:30:26 |
合計ジャッジ時間 | 5,114 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 131 ms
53,844 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 131 ms
54,056 KB |
ソースコード
import java.util.Scanner; public class janken { public static void main(String[] args){ Scanner sn = new Scanner(System.in); // int first = sn.nextInt(); // int later = sn.nextInt(); // if(first == later){ // System.out.println("Drew"); // }else if((first == 0 && later == 1) || (first == 1 && later == 2) || (first == 2 && later == 0)){ // System.out.println("Won"); // }else{ // System.out.println("Lost"); // } int n,k; n = sn.nextInt(); k = sn.nextInt(); if(n == k){ System.out.println("Drew"); }else if((n-k+3)%3==1){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }