結果

問題 No.138 化石のバージョン
ユーザー spaciaspacia
提出日時 2015-12-19 08:39:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 1,890 ms
コンパイル使用メモリ 71,884 KB
実行使用メモリ 49,760 KB
最終ジャッジ日時 2023-10-14 14:13:43
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,716 KB
testcase_01 AC 43 ms
49,320 KB
testcase_02 AC 43 ms
49,340 KB
testcase_03 AC 43 ms
49,528 KB
testcase_04 AC 43 ms
49,168 KB
testcase_05 AC 43 ms
49,432 KB
testcase_06 AC 43 ms
49,428 KB
testcase_07 AC 42 ms
49,516 KB
testcase_08 AC 43 ms
49,176 KB
testcase_09 AC 43 ms
49,104 KB
testcase_10 AC 43 ms
49,176 KB
testcase_11 AC 43 ms
49,344 KB
testcase_12 WA -
testcase_13 AC 42 ms
49,248 KB
testcase_14 WA -
testcase_15 AC 43 ms
49,180 KB
testcase_16 AC 43 ms
49,232 KB
testcase_17 AC 43 ms
49,176 KB
testcase_18 AC 43 ms
49,556 KB
testcase_19 AC 43 ms
49,312 KB
testcase_20 AC 43 ms
49,564 KB
testcase_21 AC 42 ms
49,328 KB
testcase_22 AC 43 ms
49,416 KB
testcase_23 AC 43 ms
49,116 KB
testcase_24 AC 43 ms
49,328 KB
testcase_25 AC 42 ms
49,176 KB
testcase_26 AC 43 ms
49,520 KB
testcase_27 AC 42 ms
49,528 KB
testcase_28 AC 43 ms
49,228 KB
testcase_29 WA -
testcase_30 AC 42 ms
49,424 KB
testcase_31 WA -
testcase_32 AC 42 ms
49,464 KB
testcase_33 WA -
testcase_34 AC 43 ms
49,172 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