結果

問題 No.201 yukicoderじゃんけん
ユーザー takutakutakutaku
提出日時 2020-09-24 17:06:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 1,014 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-06-28 04:59:28
合計ジャッジ時間 5,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,008 KB
testcase_01 AC 127 ms
41,244 KB
testcase_02 AC 130 ms
41,436 KB
testcase_03 AC 131 ms
41,108 KB
testcase_04 AC 133 ms
41,196 KB
testcase_05 AC 133 ms
41,060 KB
testcase_06 AC 128 ms
41,412 KB
testcase_07 AC 125 ms
41,280 KB
testcase_08 AC 130 ms
40,880 KB
testcase_09 AC 131 ms
41,572 KB
testcase_10 AC 135 ms
41,444 KB
testcase_11 AC 132 ms
41,372 KB
testcase_12 AC 132 ms
41,440 KB
testcase_13 AC 132 ms
41,200 KB
testcase_14 AC 126 ms
41,040 KB
testcase_15 AC 171 ms
41,392 KB
testcase_16 AC 176 ms
41,376 KB
testcase_17 AC 173 ms
41,436 KB
testcase_18 AC 162 ms
41,628 KB
testcase_19 AC 164 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        String[] p1 = sc.nextLine().split(" ",0);
        String[] p2 = sc.nextLine().split(" ",0);
        
        String name1 = p1[0];
        String point1 = p1[1];
        String hand1 = p1[2];
        
        String name2 = p2[0];
        String point2 = p2[1];
        String hand2 = p2[2];
        
        if(point1.length() > point2.length()) {
            System.out.println(name1);
        
        }else if(point2.length() > point1.length()) {
            System.out.println(name2);
        
        }else {
            
            if(point1.compareTo(point2) < 0) {
                System.out.println(name2);
                
            }else if(point1.compareTo(point2) > 0) {
                System.out.println(name1);
            
            }else {
                System.out.println(-1);
            }
            
        }
    }
}
0