結果

問題 No.138 化石のバージョン
ユーザー spaciaspacia
提出日時 2015-12-19 08:39:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 37,016 KB
最終ジャッジ日時 2024-09-16 08:51:34
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,692 KB
testcase_01 AC 48 ms
36,680 KB
testcase_02 AC 46 ms
36,676 KB
testcase_03 AC 43 ms
36,508 KB
testcase_04 AC 47 ms
36,884 KB
testcase_05 AC 47 ms
36,728 KB
testcase_06 AC 46 ms
36,640 KB
testcase_07 AC 47 ms
36,880 KB
testcase_08 AC 45 ms
36,496 KB
testcase_09 AC 45 ms
36,492 KB
testcase_10 AC 48 ms
36,492 KB
testcase_11 AC 48 ms
36,732 KB
testcase_12 WA -
testcase_13 AC 46 ms
36,736 KB
testcase_14 WA -
testcase_15 AC 47 ms
36,504 KB
testcase_16 AC 48 ms
36,480 KB
testcase_17 AC 48 ms
36,724 KB
testcase_18 AC 48 ms
36,668 KB
testcase_19 AC 47 ms
36,632 KB
testcase_20 AC 45 ms
36,400 KB
testcase_21 AC 47 ms
36,808 KB
testcase_22 AC 47 ms
36,780 KB
testcase_23 AC 47 ms
36,800 KB
testcase_24 AC 48 ms
36,564 KB
testcase_25 AC 49 ms
36,728 KB
testcase_26 AC 49 ms
36,496 KB
testcase_27 AC 46 ms
36,896 KB
testcase_28 AC 45 ms
36,696 KB
testcase_29 WA -
testcase_30 AC 47 ms
36,776 KB
testcase_31 WA -
testcase_32 AC 46 ms
36,916 KB
testcase_33 WA -
testcase_34 AC 47 ms
36,744 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main138 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		System.out.println(br.readLine().compareTo(br.readLine()) < 0 ? "NO" : "YES");
		
	}
}
0