結果

問題 No.254 文字列の構成
ユーザー TawaraTawara
提出日時 2015-08-02 00:35:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 10,188 KB
最終ジャッジ日時 2024-07-18 00:43:52
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,296 KB
testcase_01 AC 16 ms
7,168 KB
testcase_02 AC 17 ms
7,040 KB
testcase_03 AC 16 ms
7,296 KB
testcase_04 AC 16 ms
7,040 KB
testcase_05 AC 16 ms
7,296 KB
testcase_06 AC 16 ms
7,168 KB
testcase_07 AC 16 ms
7,168 KB
testcase_08 AC 16 ms
7,296 KB
testcase_09 AC 16 ms
7,296 KB
testcase_10 AC 15 ms
7,168 KB
testcase_11 AC 16 ms
7,296 KB
testcase_12 AC 16 ms
7,424 KB
testcase_13 AC 16 ms
7,296 KB
testcase_14 AC 16 ms
7,296 KB
testcase_15 AC 18 ms
7,552 KB
testcase_16 AC 21 ms
8,064 KB
testcase_17 AC 33 ms
10,060 KB
testcase_18 AC 33 ms
10,188 KB
testcase_19 AC 31 ms
9,728 KB
testcase_20 AC 28 ms
9,108 KB
testcase_21 AC 31 ms
9,600 KB
testcase_22 AC 23 ms
8,576 KB
testcase_23 AC 26 ms
9,032 KB
testcase_24 AC 26 ms
9,024 KB
testcase_25 AC 30 ms
9,472 KB
testcase_26 AC 30 ms
9,816 KB
testcase_27 AC 31 ms
9,816 KB
testcase_28 AC 29 ms
9,216 KB
testcase_29 AC 33 ms
10,128 KB
testcase_30 AC 33 ms
9,728 KB
testcase_31 AC 23 ms
8,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cs(b,s,N):
	for i in xrange(1,N+1):
		if C[i+1] <= N:
			continue
		return N-C[i], s+[chr(b+(j&1)) for j in range(2*i-1)]
	return 0, s
N = int(raw_input())
C = [i**2 for i in xrange(1<<15)]
N,s = cs(97,[],N)
N,s = cs(99,s,N)
print "".join(s+[chr(101+(k%22)) for k in xrange(N)])
0