結果

問題 No.138 化石のバージョン
ユーザー ルッツファンルッツファン
提出日時 2015-11-28 00:49:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 3,501 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 52,264 KB
最終ジャッジ日時 2024-09-14 00:55:15
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,120 KB
testcase_01 AC 54 ms
50,160 KB
testcase_02 AC 54 ms
49,872 KB
testcase_03 AC 54 ms
49,932 KB
testcase_04 AC 56 ms
50,248 KB
testcase_05 AC 55 ms
50,196 KB
testcase_06 AC 54 ms
50,012 KB
testcase_07 AC 55 ms
50,312 KB
testcase_08 AC 55 ms
50,180 KB
testcase_09 AC 55 ms
50,164 KB
testcase_10 AC 55 ms
50,196 KB
testcase_11 AC 55 ms
50,152 KB
testcase_12 AC 55 ms
50,224 KB
testcase_13 AC 55 ms
49,720 KB
testcase_14 AC 54 ms
50,160 KB
testcase_15 AC 56 ms
50,220 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 54 ms
50,288 KB
testcase_20 AC 55 ms
49,840 KB
testcase_21 WA -
testcase_22 AC 56 ms
50,020 KB
testcase_23 AC 54 ms
50,060 KB
testcase_24 AC 55 ms
50,192 KB
testcase_25 AC 55 ms
50,312 KB
testcase_26 AC 55 ms
50,392 KB
testcase_27 AC 56 ms
50,168 KB
testcase_28 AC 55 ms
49,740 KB
testcase_29 AC 56 ms
49,792 KB
testcase_30 AC 55 ms
50,160 KB
testcase_31 AC 56 ms
49,992 KB
testcase_32 AC 55 ms
50,108 KB
testcase_33 AC 55 ms
50,356 KB
testcase_34 AC 54 ms
50,028 KB
testcase_35 AC 55 ms
50,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class yukicoder04 {
	public static void main(String[] args){
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String tes = null;
		
		

		
		

			try {
				tes = br.readLine();
			} catch (IOException e) {
				// TODO 自動生成された catch ブロック
				e.printStackTrace();
			}
			
			String[] tew = null;
			tew = tes.split("\\.");

			int x = Integer.parseInt(tew[0])
					,y = Integer.parseInt(tew[1])
					,z = Integer.parseInt(tew[2]);
			
			try {
				tes = br.readLine();
			} catch (IOException e) {
				// TODO 自動生成された catch ブロック
				e.printStackTrace();
			}
			
			tew = tes.split("\\.");
			int x2 = Integer.parseInt(tew[0]),y2 = Integer.parseInt(tew[1]),z2 = Integer.parseInt(tew[2]);
			if(x < x2){
				System.out.println("NO");
			}else if(x > x2){
				System.out.println("YES");
			}else if(y < y2){
				System.out.println("NO");
			}else if(y > y2){
				System.out.println("YES");
			}else if(z < z2){
				System.out.println("NO");
			}else if(z > z2){
				System.out.println("YES");
			}
			
		
	}

}
0