結果

問題 No.746 7の倍数
ユーザー alexara1123alexara1123
提出日時 2019-09-21 12:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-09-17 16:09:31
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 144 ms
76,572 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 43 ms
66,432 KB
testcase_06 AC 64 ms
74,712 KB
testcase_07 AC 56 ms
74,752 KB
testcase_08 AC 67 ms
74,840 KB
testcase_09 AC 54 ms
74,828 KB
testcase_10 AC 44 ms
65,280 KB
testcase_11 AC 97 ms
75,392 KB
testcase_12 AC 143 ms
76,544 KB
testcase_13 AC 79 ms
74,908 KB
testcase_14 AC 92 ms
75,264 KB
testcase_15 AC 86 ms
75,392 KB
testcase_16 AC 90 ms
75,392 KB
testcase_17 AC 87 ms
75,244 KB
testcase_18 AC 94 ms
75,232 KB
testcase_19 AC 86 ms
75,136 KB
testcase_20 AC 56 ms
74,712 KB
testcase_21 AC 49 ms
74,696 KB
testcase_22 AC 113 ms
75,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    if n == 0:
        print(0)
        exit()
    ans = "0."
    for i in range(n // 6):
        ans += "142857"
    ans += "142857"[:n % 6]
    print(ans)


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