結果

問題 No.138 化石のバージョン
ユーザー yukirin
提出日時 2015-04-25 17:25:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 103 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-05 02:25:47
合計ジャッジ時間 2,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

v1 = map(int, input().split('.'))
v2 = map(int, input().split('.'))

print('YES' if v1 >= v2 else 'NO')
0