結果

問題 No.746 7の倍数
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-28 10:47:18
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 76,856 KB
実行使用メモリ 100,852 KB
最終ジャッジ日時 2024-09-17 15:38:31
合計ジャッジ時間 5,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,388 KB
testcase_01 AC 65 ms
75,328 KB
testcase_02 AC 66 ms
75,168 KB
testcase_03 AC 457 ms
100,512 KB
testcase_04 AC 68 ms
77,360 KB
testcase_05 AC 73 ms
77,060 KB
testcase_06 AC 126 ms
78,120 KB
testcase_07 AC 97 ms
77,460 KB
testcase_08 AC 140 ms
79,252 KB
testcase_09 AC 98 ms
77,240 KB
testcase_10 AC 71 ms
77,608 KB
testcase_11 AC 265 ms
85,000 KB
testcase_12 AC 464 ms
100,852 KB
testcase_13 AC 202 ms
81,040 KB
testcase_14 AC 242 ms
83,968 KB
testcase_15 AC 211 ms
82,708 KB
testcase_16 AC 245 ms
83,132 KB
testcase_17 AC 211 ms
82,240 KB
testcase_18 AC 237 ms
83,896 KB
testcase_19 AC 199 ms
81,824 KB
testcase_20 AC 93 ms
77,448 KB
testcase_21 AC 78 ms
77,340 KB
testcase_22 AC 307 ms
88,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lst = ['1', '4', '2', '8', '5', '7']
N = int(raw_input())
ans = '0'
if N == 0: print ans
else:
	ans = ans + '.'
	for i in range(0, N):
		ans = ans + lst[i%6]
	print ans
0