結果

問題 No.746 7の倍数
ユーザー alexara1123alexara1123
提出日時 2019-09-21 12:23:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 183 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-09-17 16:08:53
合計ジャッジ時間 2,185 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
52,156 KB
testcase_02 AC 32 ms
53,032 KB
testcase_03 AC 107 ms
76,844 KB
testcase_04 AC 33 ms
54,220 KB
testcase_05 AC 36 ms
66,876 KB
testcase_06 AC 48 ms
74,884 KB
testcase_07 AC 43 ms
74,964 KB
testcase_08 AC 50 ms
74,848 KB
testcase_09 AC 46 ms
74,704 KB
testcase_10 AC 35 ms
65,716 KB
testcase_11 AC 73 ms
75,564 KB
testcase_12 AC 108 ms
76,968 KB
testcase_13 AC 64 ms
74,924 KB
testcase_14 AC 71 ms
75,308 KB
testcase_15 AC 65 ms
75,164 KB
testcase_16 AC 73 ms
75,248 KB
testcase_17 AC 69 ms
75,300 KB
testcase_18 AC 74 ms
75,204 KB
testcase_19 AC 66 ms
75,056 KB
testcase_20 AC 48 ms
74,680 KB
testcase_21 AC 44 ms
74,596 KB
testcase_22 AC 79 ms
75,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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