結果

問題 No.1027 U+1F4A0
ユーザー kshiva1126kshiva1126
提出日時 2020-05-23 22:29:16
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 10,688 KB
実行使用メモリ 8,008 KB
最終ジャッジ日時 2023-07-30 13:38:18
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,892 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
7,912 KB
testcase_06 AC 15 ms
7,884 KB
testcase_07 AC 15 ms
7,892 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 14 ms
7,824 KB
testcase_17 AC 15 ms
7,872 KB
testcase_18 AC 15 ms
7,908 KB
testcase_19 AC 14 ms
7,860 KB
testcase_20 AC 14 ms
7,800 KB
testcase_21 AC 14 ms
7,860 KB
testcase_22 WA -
testcase_23 AC 15 ms
7,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = list(map(int, input().split()))
if D[0] > D[1]:
    print(8)
elif D[0] == D[1]:
    print(4)
else:
    print(0)
0