結果
問題 | No.138 化石のバージョン |
ユーザー |
![]() |
提出日時 | 2021-02-09 21:53:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 173 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 53,680 KB |
最終ジャッジ日時 | 2024-07-07 03:52:09 |
合計ジャッジ時間 | 2,625 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
a=list(map(int,input().split('.')))b=list(map(int,input().split('.')))x=a[0]*10**6+a[1]*10**3+a[2]y=b[0]*10**6+b[1]*10**3+b[2]if x>=y:print('YES')else:print('NO')