結果

問題 No.46 はじめのn歩
コンテスト
ユーザー sikama
提出日時 2017-03-02 07:00:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 130 bytes
記録
コンパイル時間 140 ms
コンパイル使用メモリ 77,312 KB
最終ジャッジ日時 2025-12-03 23:08:55
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

first=raw_input()
split_first=first.split()
a=int(split_first[0])
b=int(split_first[1])
if b%a==0:
	print(b/a)
else:
	print(b/a+1)
0