結果

問題 No.1027 U+1F4A0
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-02-17 20:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 57,272 KB
最終ジャッジ日時 2024-09-28 23:54:47
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,544 KB
testcase_01 AC 40 ms
56,304 KB
testcase_02 AC 39 ms
56,584 KB
testcase_03 AC 40 ms
55,956 KB
testcase_04 AC 39 ms
57,048 KB
testcase_05 AC 38 ms
55,484 KB
testcase_06 AC 38 ms
56,088 KB
testcase_07 AC 39 ms
56,240 KB
testcase_08 AC 39 ms
56,244 KB
testcase_09 AC 38 ms
56,980 KB
testcase_10 AC 39 ms
55,844 KB
testcase_11 AC 38 ms
56,068 KB
testcase_12 AC 42 ms
55,956 KB
testcase_13 AC 39 ms
56,536 KB
testcase_14 AC 41 ms
55,904 KB
testcase_15 AC 39 ms
56,588 KB
testcase_16 AC 39 ms
56,272 KB
testcase_17 AC 39 ms
56,520 KB
testcase_18 AC 39 ms
55,956 KB
testcase_19 AC 38 ms
56,096 KB
testcase_20 AC 41 ms
57,272 KB
testcase_21 AC 41 ms
56,348 KB
testcase_22 AC 40 ms
56,052 KB
testcase_23 AC 39 ms
56,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline




D1,D2 = map(int,input().split())
D1 *= 2
if D1==D2:
    print(4)
elif D1<D2:
    print(0)
elif D1<2*D2:
    print(8)
elif D1==2*D2:
    print(4)
else:
    print(0)
0