結果
問題 | No.138 化石のバージョン |
ユーザー |
|
提出日時 | 2022-08-29 18:31:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 167 bytes |
コンパイル時間 | 327 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 53,536 KB |
最終ジャッジ日時 | 2024-11-06 15:52:12 |
合計ジャッジ時間 | 3,095 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
def main(): print('YES' if tuple(map(int, input().split('.'))) >= tuple(map(int, input().split('.'))) else 'NO') if __name__ == '__main__': main()