結果

問題 No.746 7の倍数
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:33:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 76,592 KB
最終ジャッジ日時 2023-08-15 08:08:09
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,460 KB
testcase_01 AC 71 ms
71,412 KB
testcase_02 AC 72 ms
71,400 KB
testcase_03 AC 86 ms
76,416 KB
testcase_04 AC 77 ms
76,368 KB
testcase_05 AC 78 ms
76,500 KB
testcase_06 AC 80 ms
76,592 KB
testcase_07 AC 80 ms
76,532 KB
testcase_08 AC 80 ms
76,332 KB
testcase_09 AC 80 ms
76,240 KB
testcase_10 AC 79 ms
76,592 KB
testcase_11 AC 82 ms
76,228 KB
testcase_12 AC 83 ms
76,308 KB
testcase_13 AC 82 ms
76,392 KB
testcase_14 AC 81 ms
76,492 KB
testcase_15 AC 82 ms
76,312 KB
testcase_16 AC 83 ms
76,396 KB
testcase_17 AC 82 ms
76,460 KB
testcase_18 AC 82 ms
76,392 KB
testcase_19 AC 81 ms
76,328 KB
testcase_20 AC 80 ms
76,508 KB
testcase_21 AC 82 ms
76,308 KB
testcase_22 AC 82 ms
76,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 0:
    print(0)
    exit()
    
print(end="0.")
for i in range(n):
    print(end="142857"[i%6])
print()
0