結果

問題 No.46 はじめのn歩
ユーザー splash9494
提出日時 2020-05-02 01:52:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-12-25 22:10:58
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

a, b = map(int, input().split())

n = b // a + (1 if b % a != 0 else 0)
print(n)
0