結果

問題 No.1027 U+1F4A0
ユーザー pekempeypekempey
提出日時 2020-04-17 21:23:57
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 10,500 KB
実行使用メモリ 7,988 KB
最終ジャッジ日時 2023-07-26 23:25:58
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 16 ms
7,792 KB
testcase_03 AC 15 ms
7,860 KB
testcase_04 AC 15 ms
7,744 KB
testcase_05 AC 16 ms
7,768 KB
testcase_06 AC 15 ms
7,848 KB
testcase_07 AC 15 ms
7,792 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
7,820 KB
testcase_14 AC 15 ms
7,796 KB
testcase_15 AC 15 ms
7,856 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 15 ms
7,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

if a > b:
  print(0)
elif a == b:
  print(4)
elif a * 2 < b:
  print(8)
elif a * 2 == b:
  print(4)
else:
  print(0)
0