結果

問題 No.46 はじめのn歩
ユーザー KudeKude
提出日時 2020-09-06 23:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 56 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 86,380 KB
実行使用メモリ 71,044 KB
最終ジャッジ日時 2023-08-19 14:32:18
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,028 KB
testcase_01 AC 76 ms
70,956 KB
testcase_02 AC 75 ms
70,912 KB
testcase_03 AC 72 ms
70,884 KB
testcase_04 AC 73 ms
70,972 KB
testcase_05 AC 78 ms
70,768 KB
testcase_06 AC 78 ms
71,016 KB
testcase_07 AC 79 ms
70,840 KB
testcase_08 AC 78 ms
70,952 KB
testcase_09 AC 78 ms
71,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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