結果

問題 No.46 はじめのn歩
ユーザー keymoonkeymoon
提出日時 2024-12-18 15:58:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 214 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-18 15:58:39
合計ジャッジ時間 7,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
21,376 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 TLE -
testcase_09 AC 27 ms
17,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inp1 = input().split()
num = [] 
for s in inp1:
    num.append(int(s))
    
count = 0
walk = 0
while walk <= num[1]:
    walk = walk + num[0]
    count = count + 1
    if walk == num[1]:
        break

print(count)
0