結果

問題 No.415 ぴょん
ユーザー けむけむけむけむ
提出日時 2021-08-24 19:59:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 399 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 1,627,768 KB
最終ジャッジ日時 2024-11-15 08:37:42
合計ジャッジ時間 21,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,312 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 210 ms
24,064 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 56 ms
10,624 KB
testcase_11 AC 35 ms
10,624 KB
testcase_12 AC 37 ms
10,752 KB
testcase_13 AC 38 ms
10,880 KB
testcase_14 AC 37 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 33 ms
10,752 KB
testcase_19 AC 33 ms
10,880 KB
testcase_20 AC 31 ms
10,496 KB
testcase_21 TLE -
testcase_22 AC 37 ms
10,368 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def pyon(N, D):
    ashiba = [x for x in range(1, N + 1)]
    loc = 0
    cnt = 0
    for i in range(N):
        ashiba[loc] = 0
        loc += D
        if loc > N - 1:
            loc -= N
        if ashiba[loc] == 0:
            break
        else:
            cnt += 1
    return cnt

def main():
    N, D = map(int, input().split())
    print(pyon(N, D))

if __name__ == '__main__':
    main()
0