結果

問題 No.138 化石のバージョン
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-06-30 23:12:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 28,676 KB
最終ジャッジ日時 2023-08-28 13:42:30
合計ジャッジ時間 12,528 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
28,564 KB
testcase_01 AC 253 ms
28,544 KB
testcase_02 AC 252 ms
28,424 KB
testcase_03 AC 253 ms
28,424 KB
testcase_04 AC 254 ms
28,428 KB
testcase_05 AC 249 ms
28,636 KB
testcase_06 AC 249 ms
28,492 KB
testcase_07 AC 250 ms
28,440 KB
testcase_08 AC 250 ms
28,424 KB
testcase_09 AC 249 ms
28,616 KB
testcase_10 AC 253 ms
28,632 KB
testcase_11 AC 248 ms
28,420 KB
testcase_12 AC 251 ms
28,424 KB
testcase_13 AC 249 ms
28,564 KB
testcase_14 AC 248 ms
28,564 KB
testcase_15 AC 249 ms
28,356 KB
testcase_16 AC 246 ms
28,676 KB
testcase_17 AC 249 ms
28,584 KB
testcase_18 AC 265 ms
28,672 KB
testcase_19 AC 250 ms
28,428 KB
testcase_20 AC 249 ms
28,504 KB
testcase_21 AC 251 ms
28,656 KB
testcase_22 AC 246 ms
28,644 KB
testcase_23 AC 247 ms
28,520 KB
testcase_24 AC 248 ms
28,628 KB
testcase_25 AC 250 ms
28,628 KB
testcase_26 AC 248 ms
28,616 KB
testcase_27 AC 246 ms
28,432 KB
testcase_28 AC 250 ms
28,556 KB
testcase_29 AC 253 ms
28,608 KB
testcase_30 AC 251 ms
28,620 KB
testcase_31 AC 250 ms
28,512 KB
testcase_32 AC 251 ms
28,436 KB
testcase_33 AC 253 ms
28,648 KB
testcase_34 AC 254 ms
28,556 KB
testcase_35 AC 252 ms
28,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import distutils.version


def main():
    v1 = distutils.version.StrictVersion(input())
    v2 = distutils.version.StrictVersion(input())
    print("YES" if v1 >= v2 else "NO")


if __name__ == '__main__':
    main()
0