結果

問題 No.46 はじめのn歩
ユーザー neginagineginagi
提出日時 2022-08-19 12:45:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-04-16 17:59:38
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
86,772 KB
testcase_01 AC 127 ms
86,880 KB
testcase_02 AC 128 ms
87,040 KB
testcase_03 AC 122 ms
86,912 KB
testcase_04 AC 125 ms
87,040 KB
testcase_05 AC 124 ms
86,912 KB
testcase_06 AC 124 ms
87,040 KB
testcase_07 AC 126 ms
86,840 KB
testcase_08 AC 126 ms
86,912 KB
testcase_09 AC 125 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)
INF = float("INF")
MOD = 10 ** 9 + 7
MOD2 = 998244353
from heapq import heappop, heappush
import math
from collections import Counter, deque
from itertools import accumulate, combinations, combinations_with_replacement, permutations
from bisect import bisect_left, bisect_right
import decimal

a, b = map(int, input().split())
print(b // a + (b % a != 0))
0