結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
StarMatyan
|
| 提出日時 | 2020-11-24 20:00:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 289 bytes |
| 記録 | |
| コンパイル時間 | 653 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-03 15:49:30 |
| 合計ジャッジ時間 | 4,687 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 WA * 10 |
ソースコード
first_s = input()
first_d = first_s.split(".")
first_int = int(first_d[0]+first_d[1]+first_d[2])
second_s = input()
second_d = second_s.split(".")
second_int = int(second_d[0]+second_d[1]+second_d[2])
result = ""
if first_int >second_int:
result = "YES"
else:
result="NO"
print(result)
StarMatyan