結果

問題 No.46 はじめのn歩
ユーザー edash
提出日時 2018-08-15 21:42:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 145 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-09-24 09:33:53
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 TLE * 1 -- * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

inp = list(map(int, input().split()))
i = 0
count = 0
one_s = inp[0]
target = inp[1]
while i < target:
    i += one_s
    count += 1
print(count)
0