結果

問題 No.46 はじめのn歩
ユーザー しもりん
提出日時 2024-10-25 03:02:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-25 03:02:12
合計ジャッジ時間 1,735 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop,heapify
from bisect import bisect,bisect_left
from itertools import product,permutations,combinations,combinations_with_replacement
from math import gcd
import sys
from functools import lru_cache
if len(sys.argv)==2:sys.stdin=open(sys.argv[1])
input=sys.stdin.readline
sys.setrecursionlimit(10**9)

a,b=map(int,input().split())
print(-(-b//a))
0