結果
問題 | No.138 化石のバージョン |
ユーザー |
![]() |
提出日時 | 2015-11-29 06:34:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 181 bytes |
コンパイル時間 | 274 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-29 13:39:51 |
合計ジャッジ時間 | 2,700 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
#! /usr/bin/env python3a=input().split('.')b=input().split('.')f=lambda x : '0'*(3-len(x))+xprint('YES' if int(f(b[0])+f(b[1])+f(b[2]))<=int(f(a[0])+f(a[1])+f(a[2])) else 'NO')