結果

問題 No.138 化石のバージョン
ユーザー nisizawanisizawa
提出日時 2017-12-17 03:49:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 268 ms / 5,000 ms
コード長 153 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 10,532 KB
実行使用メモリ 28,724 KB
最終ジャッジ日時 2023-08-28 13:58:53
合計ジャッジ時間 12,426 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
28,604 KB
testcase_01 AC 247 ms
28,548 KB
testcase_02 AC 244 ms
28,536 KB
testcase_03 AC 245 ms
28,544 KB
testcase_04 AC 245 ms
28,676 KB
testcase_05 AC 244 ms
28,652 KB
testcase_06 AC 252 ms
28,676 KB
testcase_07 AC 244 ms
28,612 KB
testcase_08 AC 246 ms
28,500 KB
testcase_09 AC 249 ms
28,720 KB
testcase_10 AC 246 ms
28,604 KB
testcase_11 AC 255 ms
28,592 KB
testcase_12 AC 249 ms
28,700 KB
testcase_13 AC 246 ms
28,504 KB
testcase_14 AC 249 ms
28,628 KB
testcase_15 AC 252 ms
28,696 KB
testcase_16 AC 251 ms
28,692 KB
testcase_17 AC 248 ms
28,616 KB
testcase_18 AC 246 ms
28,508 KB
testcase_19 AC 247 ms
28,684 KB
testcase_20 AC 246 ms
28,552 KB
testcase_21 AC 246 ms
28,532 KB
testcase_22 AC 244 ms
28,724 KB
testcase_23 AC 245 ms
28,668 KB
testcase_24 AC 245 ms
28,608 KB
testcase_25 AC 244 ms
28,536 KB
testcase_26 AC 247 ms
28,604 KB
testcase_27 AC 245 ms
28,640 KB
testcase_28 AC 244 ms
28,596 KB
testcase_29 AC 268 ms
28,668 KB
testcase_30 AC 248 ms
28,720 KB
testcase_31 AC 242 ms
28,676 KB
testcase_32 AC 243 ms
28,592 KB
testcase_33 AC 242 ms
28,544 KB
testcase_34 AC 244 ms
28,608 KB
testcase_35 AC 242 ms
28,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from distutils.version import StrictVersion

v0 = input()
v1 = input()

if StrictVersion(v1) <= StrictVersion(v0):
    print('YES')
else:
    print('NO')
0