結果

問題 No.744 循環小数N桁目 Easy
ユーザー ABKZABKZ
提出日時 2021-07-27 18:41:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-07-23 16:01:53
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,760 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,308 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
53,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

n = 2
a = []
b = []
while True:
    n = n * 10
    p, q = divmod(n, 7)
    a.append(p)
    if q in b:
        break
    else:
        b.append(q)
        n = q

print(a[(N - 1) % 7])
0