結果

問題 No.254 文字列の構成
ユーザー TawaraTawara
提出日時 2015-08-01 20:07:01
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,520 KB
最終ジャッジ日時 2024-07-18 00:41:23
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 10 ms
6,944 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 19 ms
7,296 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
9,236 KB
testcase_20 AC 26 ms
8,180 KB
testcase_21 AC 36 ms
8,888 KB
testcase_22 AC 23 ms
7,680 KB
testcase_23 AC 32 ms
8,352 KB
testcase_24 AC 29 ms
8,228 KB
testcase_25 AC 34 ms
8,916 KB
testcase_26 AC 30 ms
8,628 KB
testcase_27 AC 41 ms
9,144 KB
testcase_28 AC 36 ms
8,916 KB
testcase_29 AC 36 ms
9,068 KB
testcase_30 AC 32 ms
8,752 KB
testcase_31 AC 19 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
M = 1<<15
for i in xrange(1,1<<15):
	if i**2 <= N < (i+1)**2:
		print "".join([chr(97+(j&1)) for j in range(2*i-1)] + [chr(99+(j%24)) for j in xrange(N-i**2)])
		break
0