結果

問題 No.46 はじめのn歩
ユーザー macaronmacaron
提出日時 2023-10-06 23:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,758 ms / 5,000 ms
コード長 107 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 75,696 KB
最終ジャッジ日時 2023-10-06 23:21:57
合計ジャッジ時間 4,577 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,376 KB
testcase_01 AC 70 ms
71,568 KB
testcase_02 AC 72 ms
71,620 KB
testcase_03 AC 69 ms
71,460 KB
testcase_04 AC 73 ms
71,184 KB
testcase_05 AC 71 ms
71,324 KB
testcase_06 AC 70 ms
71,392 KB
testcase_07 AC 70 ms
71,424 KB
testcase_08 AC 2,758 ms
75,696 KB
testcase_09 AC 74 ms
71,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
count = 0
dis = 0
while dis < b:
    count += 1
    dis += a

print(count)
0