結果

問題 No.46 はじめのn歩
ユーザー zimphazimpha
提出日時 2017-12-13 23:16:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 62 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 71,460 KB
最終ジャッジ日時 2023-08-21 02:29:25
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,304 KB
testcase_01 AC 70 ms
71,368 KB
testcase_02 AC 69 ms
71,336 KB
testcase_03 AC 70 ms
71,296 KB
testcase_04 AC 70 ms
71,460 KB
testcase_05 AC 71 ms
71,400 KB
testcase_06 AC 69 ms
71,304 KB
testcase_07 AC 69 ms
71,332 KB
testcase_08 AC 70 ms
71,360 KB
testcase_09 AC 70 ms
71,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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