結果

問題 No.746 7の倍数
ユーザー kohei2019kohei2019
提出日時 2022-04-03 23:30:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 92,100 KB
最終ジャッジ日時 2024-05-03 09:03:40
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 79 ms
91,928 KB
testcase_04 AC 49 ms
61,824 KB
testcase_05 AC 50 ms
64,256 KB
testcase_06 AC 62 ms
72,832 KB
testcase_07 AC 55 ms
69,376 KB
testcase_08 AC 59 ms
74,112 KB
testcase_09 AC 55 ms
70,144 KB
testcase_10 AC 53 ms
63,872 KB
testcase_11 AC 70 ms
87,552 KB
testcase_12 AC 77 ms
92,100 KB
testcase_13 AC 61 ms
77,952 KB
testcase_14 AC 72 ms
86,480 KB
testcase_15 AC 60 ms
78,976 KB
testcase_16 AC 61 ms
80,128 KB
testcase_17 AC 59 ms
79,104 KB
testcase_18 AC 70 ms
86,428 KB
testcase_19 AC 59 ms
78,976 KB
testcase_20 AC 54 ms
69,248 KB
testcase_21 AC 50 ms
66,536 KB
testcase_22 AC 75 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ansls = ['0.']
if N == 0:
    print(0)
    exit()
l = '142857'
for i in range(N):
    ansls.append(l[i%6])
print(*ansls,sep='')
0