結果
問題 | No.746 7の倍数 |
ユーザー |
![]() |
提出日時 | 2018-10-19 21:45:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 101 ms / 2,000 ms |
コード長 | 125 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-18 20:23:08 |
合計ジャッジ時間 | 2,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N = int(input()) print('0', end='') for i in range(N): if i == 0: print('.', end='') print('142857'[i%6], end='') print()