結果

問題 No.138 化石のバージョン
ユーザー あかりきあかりき
提出日時 2021-02-09 21:53:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-07-07 03:52:09
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,256 KB
testcase_01 AC 33 ms
53,680 KB
testcase_02 AC 35 ms
51,924 KB
testcase_03 AC 35 ms
52,152 KB
testcase_04 AC 36 ms
52,596 KB
testcase_05 AC 35 ms
52,344 KB
testcase_06 AC 36 ms
51,748 KB
testcase_07 AC 36 ms
51,992 KB
testcase_08 AC 35 ms
52,484 KB
testcase_09 AC 36 ms
52,072 KB
testcase_10 AC 35 ms
51,996 KB
testcase_11 AC 34 ms
52,924 KB
testcase_12 AC 37 ms
52,172 KB
testcase_13 AC 35 ms
52,312 KB
testcase_14 AC 34 ms
52,760 KB
testcase_15 AC 32 ms
52,940 KB
testcase_16 AC 33 ms
52,484 KB
testcase_17 AC 32 ms
53,564 KB
testcase_18 AC 34 ms
52,688 KB
testcase_19 AC 32 ms
53,000 KB
testcase_20 AC 33 ms
53,588 KB
testcase_21 AC 35 ms
52,696 KB
testcase_22 AC 36 ms
52,764 KB
testcase_23 AC 35 ms
52,644 KB
testcase_24 AC 35 ms
52,240 KB
testcase_25 AC 35 ms
52,328 KB
testcase_26 AC 31 ms
52,340 KB
testcase_27 AC 33 ms
52,484 KB
testcase_28 AC 33 ms
52,232 KB
testcase_29 AC 32 ms
52,648 KB
testcase_30 AC 31 ms
52,616 KB
testcase_31 AC 32 ms
53,432 KB
testcase_32 AC 36 ms
52,464 KB
testcase_33 AC 36 ms
52,248 KB
testcase_34 AC 35 ms
51,876 KB
testcase_35 AC 32 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=list(map(int,input().split('.')))
b=list(map(int,input().split('.')))
x=a[0]*10**6+a[1]*10**3+a[2]
y=b[0]*10**6+b[1]*10**3+b[2]
if x>=y:
  print('YES')
else:
  print('NO')
0