結果

問題 No.746 7の倍数
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-10-19 21:29:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 99,016 KB
最終ジャッジ日時 2024-11-18 19:59:14
合計ジャッジ時間 4,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,340 KB
testcase_02 AC 35 ms
52,624 KB
testcase_03 AC 482 ms
98,920 KB
testcase_04 AC 39 ms
63,748 KB
testcase_05 AC 50 ms
75,284 KB
testcase_06 AC 116 ms
76,644 KB
testcase_07 AC 79 ms
75,800 KB
testcase_08 AC 125 ms
77,280 KB
testcase_09 AC 78 ms
75,668 KB
testcase_10 AC 52 ms
75,224 KB
testcase_11 AC 264 ms
83,552 KB
testcase_12 AC 480 ms
99,016 KB
testcase_13 AC 180 ms
79,488 KB
testcase_14 AC 241 ms
82,392 KB
testcase_15 AC 207 ms
80,812 KB
testcase_16 AC 225 ms
82,024 KB
testcase_17 AC 202 ms
80,524 KB
testcase_18 AC 242 ms
82,424 KB
testcase_19 AC 198 ms
80,096 KB
testcase_20 AC 79 ms
75,612 KB
testcase_21 AC 56 ms
75,412 KB
testcase_22 AC 313 ms
87,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n==1:
    print(0)
else:
    s='142857'
    ans='0.'
    for i in range(n):
        ans+=s[i%6]
    print(ans)
0