結果

問題 No.138 化石のバージョン
ユーザー na-shna-sh
提出日時 2020-07-14 15:23:46
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 10,516 KB
実行使用メモリ 8,004 KB
最終ジャッジ日時 2023-08-11 01:53:32
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 15 ms
7,900 KB
testcase_04 AC 15 ms
7,860 KB
testcase_05 WA -
testcase_06 AC 14 ms
7,820 KB
testcase_07 AC 14 ms
7,868 KB
testcase_08 AC 15 ms
7,872 KB
testcase_09 AC 14 ms
7,952 KB
testcase_10 AC 14 ms
7,824 KB
testcase_11 AC 14 ms
7,824 KB
testcase_12 AC 14 ms
7,872 KB
testcase_13 AC 13 ms
7,896 KB
testcase_14 AC 15 ms
7,856 KB
testcase_15 AC 14 ms
7,964 KB
testcase_16 AC 14 ms
7,900 KB
testcase_17 AC 15 ms
7,924 KB
testcase_18 AC 14 ms
7,960 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 14 ms
7,788 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 14 ms
7,896 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 14 ms
7,820 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 13 ms
7,872 KB
testcase_34 AC 14 ms
7,892 KB
testcase_35 AC 15 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = list(map(int, input().split('.')))
B = list(map(int, input().split('.')))

for i in range(3):
    if A[i] >= B[i]:
        print('YES')
        break
else:
    print('NO')
0