結果

問題 No.1027 U+1F4A0
ユーザー dangodango
提出日時 2023-06-16 19:25:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 53,676 KB
最終ジャッジ日時 2024-06-24 11:22:46
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,528 KB
testcase_01 AC 39 ms
52,364 KB
testcase_02 AC 39 ms
52,344 KB
testcase_03 AC 38 ms
52,332 KB
testcase_04 AC 37 ms
53,592 KB
testcase_05 AC 37 ms
52,436 KB
testcase_06 AC 42 ms
52,496 KB
testcase_07 AC 38 ms
52,380 KB
testcase_08 AC 38 ms
51,872 KB
testcase_09 AC 37 ms
52,888 KB
testcase_10 AC 38 ms
53,016 KB
testcase_11 AC 38 ms
52,676 KB
testcase_12 AC 38 ms
52,052 KB
testcase_13 AC 37 ms
52,776 KB
testcase_14 AC 38 ms
51,548 KB
testcase_15 AC 39 ms
51,928 KB
testcase_16 AC 38 ms
52,092 KB
testcase_17 AC 37 ms
51,896 KB
testcase_18 AC 37 ms
52,516 KB
testcase_19 AC 37 ms
53,304 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 38 ms
53,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
print(4 if A == B or A == B // 2 else 8 if B // 2 < A < B else 0)
0