結果

問題 No.46 はじめのn歩
ユーザー zakuro9715zakuro9715
提出日時 2015-10-08 11:19:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 73 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 87,344 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2023-09-27 08:04:25
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,392 KB
testcase_01 AC 61 ms
71,680 KB
testcase_02 AC 64 ms
71,436 KB
testcase_03 AC 64 ms
71,448 KB
testcase_04 AC 69 ms
71,336 KB
testcase_05 AC 64 ms
71,428 KB
testcase_06 AC 65 ms
71,452 KB
testcase_07 AC 64 ms
71,652 KB
testcase_08 AC 63 ms
71,624 KB
testcase_09 AC 64 ms
71,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
a, b = map(int, input().split())
print(ceil(b / a))
0