結果

問題 No.388 階段 (1)
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-01 15:22:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 86,952 KB
実行使用メモリ 71,644 KB
最終ジャッジ日時 2023-09-22 10:50:18
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,332 KB
testcase_01 AC 74 ms
71,644 KB
testcase_02 AC 73 ms
71,336 KB
testcase_03 AC 74 ms
71,568 KB
testcase_04 AC 76 ms
71,464 KB
testcase_05 AC 76 ms
71,248 KB
testcase_06 AC 76 ms
71,436 KB
testcase_07 AC 76 ms
71,220 KB
testcase_08 AC 76 ms
71,452 KB
testcase_09 AC 75 ms
71,324 KB
testcase_10 AC 76 ms
71,404 KB
testcase_11 AC 75 ms
71,412 KB
testcase_12 AC 76 ms
71,180 KB
testcase_13 AC 77 ms
71,496 KB
testcase_14 AC 76 ms
71,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
now_step, step_for_house = input().split(" ")
print(math.floor(int(now_step) / int(step_for_house)) + 1)
0