結果

問題 No.201 yukicoderじゃんけん
ユーザー fal_rndfal_rnd
提出日時 2017-08-25 23:42:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 79,612 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-10-15 16:15:11
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,260 KB
testcase_01 AC 128 ms
54,252 KB
testcase_02 AC 125 ms
54,260 KB
testcase_03 AC 132 ms
54,144 KB
testcase_04 WA -
testcase_05 AC 128 ms
53,808 KB
testcase_06 AC 129 ms
54,012 KB
testcase_07 AC 129 ms
53,992 KB
testcase_08 AC 131 ms
53,932 KB
testcase_09 AC 132 ms
53,956 KB
testcase_10 AC 132 ms
53,996 KB
testcase_11 AC 132 ms
53,872 KB
testcase_12 AC 135 ms
54,044 KB
testcase_13 AC 133 ms
53,832 KB
testcase_14 AC 130 ms
53,928 KB
testcase_15 AC 166 ms
53,928 KB
testcase_16 AC 173 ms
53,804 KB
testcase_17 AC 163 ms
54,340 KB
testcase_18 AC 167 ms
54,080 KB
testcase_19 AC 168 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		String na=s.next();
		String a=s.next();
		s.next();
		String nb=s.next();
		String b=s.next();
		System.out.println(
				a.equals(b)?-1
						:a.length()>b.length()||a.compareTo(b)>0
						?na:nb);
	}
}
0