結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
syu
|
| 提出日時 | 2020-08-25 18:29:24 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 135 ms / 5,000 ms |
| コード長 | 987 bytes |
| コンパイル時間 | 2,177 ms |
| コンパイル使用メモリ | 74,228 KB |
| 実行使用メモリ | 54,248 KB |
| 最終ジャッジ日時 | 2024-11-06 11:38:10 |
| 合計ジャッジ時間 | 4,062 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
int myHand=sc.nextInt();
int yourHand=sc.nextInt();
String result="";
//0はグー、1はチョキ、2はパー
if(myHand==0){
if(yourHand==0){
result="Drew";
}else if(yourHand==1){
result="Won";
}else{
result="Lost";
}
}else if(myHand==1){
if(yourHand==0){
result="Lost";
}else if(yourHand==1){
result="Drew";
}else{
result="Won";
}
}else{
if(yourHand==0){
result="Won";
}else if(yourHand==1){
result="Lost";
}else{
result="Drew";
}
}
System.out.println(result);
}
}
syu