結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2024-07-15 03:30:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 108 bytes |
| コンパイル時間 | 366 ms |
| コンパイル使用メモリ | 82,600 KB |
| 実行使用メモリ | 66,952 KB |
| 最終ジャッジ日時 | 2024-07-15 03:30:39 |
| 合計ジャッジ時間 | 4,557 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 33 |
ソースコード
X = map(int,input().split("."))
Y = map(int,input().split("."))
if Y <= X:
print("YES")
else:
print("NO")
310icecrystal