結果

問題 No.254 文字列の構成
ユーザー convexineqconvexineq
提出日時 2020-12-11 07:31:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 252 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 66,328 KB
最終ジャッジ日時 2024-09-19 21:09:06
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,700 KB
testcase_01 AC 37 ms
53,088 KB
testcase_02 AC 37 ms
52,272 KB
testcase_03 AC 36 ms
53,876 KB
testcase_04 AC 36 ms
52,076 KB
testcase_05 AC 36 ms
52,748 KB
testcase_06 AC 37 ms
52,576 KB
testcase_07 AC 37 ms
53,080 KB
testcase_08 AC 36 ms
52,396 KB
testcase_09 AC 36 ms
52,940 KB
testcase_10 AC 36 ms
52,256 KB
testcase_11 AC 35 ms
53,224 KB
testcase_12 AC 35 ms
52,344 KB
testcase_13 AC 37 ms
53,140 KB
testcase_14 AC 40 ms
59,104 KB
testcase_15 AC 39 ms
59,920 KB
testcase_16 AC 41 ms
60,824 KB
testcase_17 AC 45 ms
65,904 KB
testcase_18 AC 45 ms
66,128 KB
testcase_19 AC 44 ms
65,368 KB
testcase_20 AC 44 ms
63,784 KB
testcase_21 AC 45 ms
65,656 KB
testcase_22 AC 42 ms
61,996 KB
testcase_23 AC 44 ms
62,732 KB
testcase_24 AC 42 ms
64,188 KB
testcase_25 AC 44 ms
65,536 KB
testcase_26 AC 44 ms
65,692 KB
testcase_27 AC 44 ms
64,624 KB
testcase_28 AC 44 ms
63,904 KB
testcase_29 AC 46 ms
66,328 KB
testcase_30 AC 45 ms
65,996 KB
testcase_31 AC 42 ms
61,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = []

ok = int(n**0.5)
for i in range(2*ok-1):
    ans.append(97+i%2)
n -= ok*ok

ok = int(n**0.5)
for i in range(2*ok-1):
    ans.append(100+i%2)
n -= ok*ok

for i in range(n):
    ans.append(120+i%3)

print("".join(map(chr,ans)))
0