結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | jimano |
提出日時 | 2018-02-06 13:06:13 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 601 bytes |
コンパイル時間 | 2,822 ms |
コンパイル使用メモリ | 74,472 KB |
実行使用メモリ | 50,752 KB |
最終ジャッジ日時 | 2024-07-18 00:49:04 |
合計ジャッジ時間 | 4,742 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,076 KB |
testcase_01 | RE | - |
testcase_02 | AC | 49 ms
50,288 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
package me.yukicoder.lv1_5; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0201 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] inputA = br.readLine().split(" "); String[] inputB = br.readLine().split(" "); long a = Long.parseLong(inputA[1]); long b = Long.parseLong(inputB[1]); if (a > b) { System.out.println(inputA[0]); } else if (a < b) { System.out.println(inputB[0]); } else { System.out.println(-1); } } }