結果

問題 No.46 はじめのn歩
ユーザー dice64dice64
提出日時 2021-06-11 00:05:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 50 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-11-30 12:09:09
合計ジャッジ時間 1,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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