結果

問題 No.138 化石のバージョン
ユーザー StarMatyanStarMatyan
提出日時 2020-11-24 20:00:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 7,976 KB
最終ジャッジ日時 2023-10-01 01:11:55
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,832 KB
testcase_01 AC 16 ms
7,752 KB
testcase_02 WA -
testcase_03 AC 16 ms
7,780 KB
testcase_04 AC 16 ms
7,816 KB
testcase_05 AC 16 ms
7,832 KB
testcase_06 AC 16 ms
7,876 KB
testcase_07 AC 16 ms
7,800 KB
testcase_08 WA -
testcase_09 AC 16 ms
7,824 KB
testcase_10 AC 15 ms
7,784 KB
testcase_11 AC 16 ms
7,752 KB
testcase_12 AC 16 ms
7,820 KB
testcase_13 WA -
testcase_14 AC 17 ms
7,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 15 ms
7,900 KB
testcase_20 AC 15 ms
7,820 KB
testcase_21 WA -
testcase_22 AC 17 ms
7,888 KB
testcase_23 AC 15 ms
7,788 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 15 ms
7,820 KB
testcase_27 AC 16 ms
7,952 KB
testcase_28 AC 16 ms
7,872 KB
testcase_29 AC 16 ms
7,832 KB
testcase_30 AC 16 ms
7,788 KB
testcase_31 AC 16 ms
7,816 KB
testcase_32 AC 16 ms
7,836 KB
testcase_33 AC 16 ms
7,948 KB
testcase_34 AC 15 ms
7,784 KB
testcase_35 AC 16 ms
7,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

first_s = input()
first_d = first_s.split(".")
first_int = int(first_d[0]+first_d[1]+first_d[2])
second_s = input()
second_d = second_s.split(".")
second_int = int(second_d[0]+second_d[1]+second_d[2])
result = ""

if first_int >second_int:
	result = "YES"
else:
	result="NO"

print(result)
0