結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
hiro_metal_core
|
| 提出日時 | 2017-12-02 22:01:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 558 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-22 07:26:44 |
| 合計ジャッジ時間 | 5,423 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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