結果

問題 No.138 化石のバージョン
ユーザー ねずねず
提出日時 2018-01-29 11:29:46
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 30,748 KB
実行使用メモリ 31,156 KB
最終ジャッジ日時 2024-06-09 10:29:05
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,784 KB
testcase_01 AC 46 ms
30,884 KB
testcase_02 AC 44 ms
31,032 KB
testcase_03 AC 41 ms
31,064 KB
testcase_04 AC 38 ms
30,692 KB
testcase_05 AC 38 ms
30,780 KB
testcase_06 AC 36 ms
30,740 KB
testcase_07 AC 39 ms
30,860 KB
testcase_08 AC 39 ms
31,084 KB
testcase_09 AC 41 ms
30,844 KB
testcase_10 AC 39 ms
30,692 KB
testcase_11 AC 39 ms
30,656 KB
testcase_12 AC 42 ms
30,912 KB
testcase_13 AC 39 ms
30,848 KB
testcase_14 AC 41 ms
30,688 KB
testcase_15 AC 41 ms
31,020 KB
testcase_16 AC 39 ms
30,656 KB
testcase_17 AC 38 ms
31,060 KB
testcase_18 AC 40 ms
30,872 KB
testcase_19 AC 41 ms
30,880 KB
testcase_20 WA -
testcase_21 AC 41 ms
30,908 KB
testcase_22 AC 41 ms
30,692 KB
testcase_23 AC 41 ms
31,076 KB
testcase_24 AC 40 ms
31,144 KB
testcase_25 AC 42 ms
31,080 KB
testcase_26 AC 41 ms
31,156 KB
testcase_27 AC 41 ms
31,084 KB
testcase_28 AC 41 ms
30,952 KB
testcase_29 AC 41 ms
30,968 KB
testcase_30 AC 41 ms
30,744 KB
testcase_31 AC 42 ms
31,044 KB
testcase_32 AC 40 ms
30,696 KB
testcase_33 AC 41 ms
30,628 KB
testcase_34 AC 41 ms
31,032 KB
testcase_35 AC 41 ms
30,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$l0 = explode('.', trim(fgets(STDIN)));
$l1 = explode('.', trim(fgets(STDIN)));
for ($i = 0; $i < 2; $i++) {
	if ($l0[$i] == $l1[$i]) continue;
	echo $l0[$i] > $l1[$i] ? 'YES' : 'NO';
	exit;
}
echo 'YES';
?>
0