結果

問題 No.46 はじめのn歩
ユーザー Kaito KoikeKaito Koike
提出日時 2018-03-30 13:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 10,456 KB
実行使用メモリ 7,892 KB
最終ジャッジ日時 2023-09-08 07:09:54
合計ジャッジ時間 858 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,800 KB
testcase_01 AC 15 ms
7,816 KB
testcase_02 AC 15 ms
7,892 KB
testcase_03 AC 15 ms
7,832 KB
testcase_04 AC 15 ms
7,832 KB
testcase_05 AC 15 ms
7,816 KB
testcase_06 AC 15 ms
7,708 KB
testcase_07 AC 16 ms
7,812 KB
testcase_08 AC 15 ms
7,836 KB
testcase_09 AC 15 ms
7,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

list_setting = list(map(int,input().split(" ")))
a = list_setting[0]
b = list_setting[1]

number_of_walk = b / a

if number_of_walk > int(number_of_walk):
    print(int(number_of_walk)+1)
else:
    print(int(number_of_walk))
0