結果

問題 No.138 化石のバージョン
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 16:01:34
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,172 KB
最終ジャッジ日時 2024-06-09 09:08:05
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
30,892 KB
testcase_01 AC 34 ms
30,812 KB
testcase_02 AC 36 ms
30,780 KB
testcase_03 AC 34 ms
30,776 KB
testcase_04 AC 35 ms
30,944 KB
testcase_05 AC 34 ms
30,764 KB
testcase_06 AC 34 ms
30,904 KB
testcase_07 AC 35 ms
30,800 KB
testcase_08 AC 35 ms
31,048 KB
testcase_09 AC 35 ms
30,780 KB
testcase_10 AC 35 ms
30,504 KB
testcase_11 AC 35 ms
30,512 KB
testcase_12 AC 34 ms
30,900 KB
testcase_13 AC 34 ms
30,552 KB
testcase_14 AC 33 ms
30,672 KB
testcase_15 AC 35 ms
30,756 KB
testcase_16 AC 34 ms
30,972 KB
testcase_17 AC 34 ms
31,172 KB
testcase_18 AC 34 ms
30,840 KB
testcase_19 AC 34 ms
30,804 KB
testcase_20 AC 35 ms
30,740 KB
testcase_21 AC 35 ms
30,976 KB
testcase_22 AC 35 ms
30,856 KB
testcase_23 AC 34 ms
30,744 KB
testcase_24 AC 35 ms
30,896 KB
testcase_25 AC 34 ms
31,084 KB
testcase_26 AC 35 ms
31,012 KB
testcase_27 AC 34 ms
30,640 KB
testcase_28 AC 35 ms
30,604 KB
testcase_29 AC 35 ms
31,080 KB
testcase_30 AC 34 ms
30,816 KB
testcase_31 AC 34 ms
30,592 KB
testcase_32 AC 34 ms
30,916 KB
testcase_33 AC 34 ms
30,600 KB
testcase_34 AC 34 ms
30,748 KB
testcase_35 AC 34 ms
30,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$version = explode(".", trim(fgets(STDIN)));
$version2 = explode(".", trim(fgets(STDIN)));
$ans = "YES";
for($i = 0; $i < 3; $i++) {
  $s = $version[$i];
  $t = $version2[$i];
  if($s > $t) {
    break;
  } else if($s < $t) {
    $ans = "NO";
    break;
  }
}
print($ans);
?>
0