結果

問題 No.46 はじめのn歩
コンテスト
ユーザー S.Marutsuka
提出日時 2015-10-15 02:39:45
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 161 bytes
記録
コンパイル時間 142 ms
コンパイル使用メモリ 77,532 KB
最終ジャッジ日時 2025-12-03 17:33:11
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# -*- coding: utf-8 -*-

input1 = raw_input().split()

a = int(input1[0])
b = int(input1[1])

ans = (b - b % a) / a
if b % a > 0:
	ans = ans + 1
	
print str(ans)
0