結果

問題 No.138 化石のバージョン
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 18:25:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-12 00:14:13
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
49,996 KB
testcase_01 AC 126 ms
50,120 KB
testcase_02 AC 124 ms
49,920 KB
testcase_03 AC 126 ms
49,920 KB
testcase_04 AC 126 ms
49,664 KB
testcase_05 AC 125 ms
49,940 KB
testcase_06 AC 127 ms
49,980 KB
testcase_07 AC 125 ms
50,132 KB
testcase_08 AC 126 ms
49,912 KB
testcase_09 AC 127 ms
50,000 KB
testcase_10 AC 128 ms
49,944 KB
testcase_11 AC 112 ms
50,056 KB
testcase_12 WA -
testcase_13 AC 126 ms
50,308 KB
testcase_14 WA -
testcase_15 AC 124 ms
49,832 KB
testcase_16 AC 126 ms
49,844 KB
testcase_17 AC 128 ms
50,064 KB
testcase_18 AC 128 ms
49,916 KB
testcase_19 AC 126 ms
49,852 KB
testcase_20 AC 127 ms
50,052 KB
testcase_21 AC 126 ms
49,892 KB
testcase_22 AC 127 ms
49,936 KB
testcase_23 AC 125 ms
50,044 KB
testcase_24 AC 127 ms
49,904 KB
testcase_25 AC 126 ms
50,028 KB
testcase_26 AC 128 ms
50,000 KB
testcase_27 AC 126 ms
49,768 KB
testcase_28 AC 127 ms
49,940 KB
testcase_29 WA -
testcase_30 AC 124 ms
49,816 KB
testcase_31 WA -
testcase_32 AC 125 ms
50,000 KB
testcase_33 WA -
testcase_34 AC 126 ms
49,980 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	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 class Pair<T,U>{
		T l;U r;
		Pair(T L,U R){l=L;r=R;}
		T getL(){return l;}
		U getR(){return r;}
	}

	public static void main(String[]$){
		System.out.println(
				s.next().compareTo(s.next())<0
				?"NO":"YES"
				);
	}
}
0