結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
AAAR15
|
| 提出日時 | 2015-06-22 16:21:29 |
| 言語 | PHP (843.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 404 bytes |
| コンパイル時間 | 2,669 ms |
| コンパイル使用メモリ | 32,020 KB |
| 実行使用メモリ | 32,916 KB |
| 最終ジャッジ日時 | 2024-07-07 16:21:03 |
| 合計ジャッジ時間 | 3,923 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 33 |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php
$hantei = fgets(STDIN);
$target = fgets(STDIN);
$str = explode(".", $hantei);
$major = $str[0] . '0';
$minor = $str[1] . '0';
$patch = $str[2] . '0';
$str1 = explode(".", $target);
$major1 = $str1[0] . '0';
$minor1 = $str1[1] . '0';
$patch1 = $str1[2] . '0';
$hantei = $major . $minor . $patch;
$target = $major1 . $minor1 . $patch1;
if ($hantei - $target < 0) {
echo 'NO';
} else {
echo 'YES';
}
AAAR15