結果
| 問題 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 20 | 
ソースコード
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('')
            
            
            
        