結果

問題 No.746 7の倍数
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-10-19 21:30:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-11-18 20:03:04
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 51 ms
69,120 KB
testcase_04 AC 44 ms
59,520 KB
testcase_05 AC 43 ms
59,992 KB
testcase_06 AC 46 ms
63,036 KB
testcase_07 AC 46 ms
61,848 KB
testcase_08 AC 46 ms
63,228 KB
testcase_09 AC 46 ms
61,696 KB
testcase_10 AC 43 ms
60,160 KB
testcase_11 AC 49 ms
66,176 KB
testcase_12 AC 53 ms
68,856 KB
testcase_13 AC 48 ms
64,580 KB
testcase_14 AC 49 ms
65,792 KB
testcase_15 AC 49 ms
65,024 KB
testcase_16 AC 47 ms
65,408 KB
testcase_17 AC 47 ms
65,364 KB
testcase_18 AC 46 ms
66,048 KB
testcase_19 AC 47 ms
64,768 KB
testcase_20 AC 45 ms
61,824 KB
testcase_21 AC 43 ms
60,468 KB
testcase_22 AC 50 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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