結果

問題 No.1027 U+1F4A0
ユーザー hedwig100hedwig100
提出日時 2020-04-17 21:24:22
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,928 KB
実行使用メモリ 8,168 KB
最終ジャッジ日時 2023-07-26 23:27:42
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,956 KB
testcase_01 AC 18 ms
7,980 KB
testcase_02 AC 16 ms
8,060 KB
testcase_03 AC 16 ms
8,032 KB
testcase_04 AC 16 ms
8,024 KB
testcase_05 AC 17 ms
7,984 KB
testcase_06 AC 17 ms
7,980 KB
testcase_07 AC 16 ms
8,112 KB
testcase_08 AC 16 ms
8,016 KB
testcase_09 AC 17 ms
7,980 KB
testcase_10 AC 16 ms
8,040 KB
testcase_11 AC 16 ms
8,068 KB
testcase_12 AC 16 ms
8,168 KB
testcase_13 AC 16 ms
8,040 KB
testcase_14 AC 16 ms
8,140 KB
testcase_15 AC 16 ms
8,044 KB
testcase_16 AC 16 ms
8,068 KB
testcase_17 AC 16 ms
8,032 KB
testcase_18 AC 16 ms
8,068 KB
testcase_19 AC 16 ms
8,068 KB
testcase_20 AC 17 ms
7,976 KB
testcase_21 AC 16 ms
8,044 KB
testcase_22 AC 16 ms
7,976 KB
testcase_23 AC 16 ms
8,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 20
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  heapq import heappop,heapify,heappush
from bisect import bisect_left

def main():
    a,b = map(int,input().split())
    if a > b:
        print(0)
    elif a == b:
        print(4)
    elif b < 2 * a:
        print(8)
    elif b == 2 * a:
        print(4)
    elif b > 2 * a:
        print(0)
if __name__ == '__main__':
    main()
0