結果

問題 No.138 化石のバージョン
ユーザー convexineqconvexineq
提出日時 2020-12-08 03:53:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 98 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,164 KB
最終ジャッジ日時 2024-09-17 14:20:09
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,696 KB
testcase_01 AC 34 ms
52,448 KB
testcase_02 AC 33 ms
52,328 KB
testcase_03 AC 34 ms
53,164 KB
testcase_04 AC 34 ms
52,884 KB
testcase_05 AC 35 ms
52,536 KB
testcase_06 AC 36 ms
52,120 KB
testcase_07 AC 36 ms
52,256 KB
testcase_08 AC 35 ms
52,220 KB
testcase_09 AC 33 ms
52,172 KB
testcase_10 AC 32 ms
53,012 KB
testcase_11 AC 31 ms
52,028 KB
testcase_12 AC 30 ms
52,112 KB
testcase_13 AC 35 ms
52,084 KB
testcase_14 AC 35 ms
52,552 KB
testcase_15 AC 32 ms
52,368 KB
testcase_16 AC 34 ms
52,116 KB
testcase_17 AC 34 ms
52,328 KB
testcase_18 AC 34 ms
52,124 KB
testcase_19 AC 32 ms
52,692 KB
testcase_20 AC 34 ms
52,336 KB
testcase_21 AC 34 ms
53,056 KB
testcase_22 AC 35 ms
52,676 KB
testcase_23 AC 32 ms
52,428 KB
testcase_24 AC 31 ms
51,924 KB
testcase_25 AC 32 ms
52,076 KB
testcase_26 AC 35 ms
52,464 KB
testcase_27 AC 34 ms
52,496 KB
testcase_28 AC 34 ms
51,884 KB
testcase_29 AC 34 ms
51,944 KB
testcase_30 AC 34 ms
52,392 KB
testcase_31 AC 33 ms
52,356 KB
testcase_32 AC 34 ms
52,228 KB
testcase_33 AC 33 ms
52,120 KB
testcase_34 AC 34 ms
53,008 KB
testcase_35 AC 33 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*a, = map(int,input().split("."))
*b, = map(int,input().split("."))
print("YES" if a>=b else "NO")
0