結果
問題 | No.746 7の倍数 |
ユーザー |
👑 |
提出日時 | 2022-01-19 20:33:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 128 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 70,528 KB |
最終ジャッジ日時 | 2024-11-23 14:03:02 |
合計ジャッジ時間 | 2,662 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
n = int(input()) if n == 0: print(0) exit() print(end="0.") for i in range(n): print(end="142857"[i%6]) print()