結果
問題 |
No.46 はじめのn歩
|
ユーザー |
|
提出日時 | 2022-08-19 12:45:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 147 ms / 5,000 ms |
コード長 | 424 bytes |
コンパイル時間 | 1,854 ms |
コンパイル使用メモリ | 81,688 KB |
実行使用メモリ | 86,948 KB |
最終ジャッジ日時 | 2024-10-07 17:07:29 |
合計ジャッジ時間 | 2,288 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
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))