結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
hiro_metal_core
|
| 提出日時 | 2017-12-02 22:01:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 170 bytes |
| コンパイル時間 | 120 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-28 03:47:18 |
| 合計ジャッジ時間 | 2,429 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 WA * 6 |
ソースコード
old_version = int(''.join(input().split('.')))
check_version = int(''.join(input().split('.')))
if old_version >= check_version:
print('YES')
else:
print('NO')
hiro_metal_core