結果
問題 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 20 |
ソースコード
n=int(input()) if n==1: print(0) else: s='142857' ans='0.' for i in range(n): ans+=s[i%6] print(ans)