結果

問題 No.254 文字列の構成
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 23:50:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 83,924 KB
最終ジャッジ日時 2024-10-06 08:44:53
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,568 KB
testcase_01 AC 56 ms
64,528 KB
testcase_02 AC 55 ms
65,276 KB
testcase_03 AC 56 ms
65,072 KB
testcase_04 AC 54 ms
64,368 KB
testcase_05 AC 54 ms
63,768 KB
testcase_06 AC 55 ms
64,352 KB
testcase_07 AC 55 ms
64,016 KB
testcase_08 AC 54 ms
64,008 KB
testcase_09 AC 55 ms
64,228 KB
testcase_10 AC 54 ms
64,516 KB
testcase_11 AC 54 ms
63,688 KB
testcase_12 AC 55 ms
64,044 KB
testcase_13 AC 54 ms
65,332 KB
testcase_14 AC 55 ms
67,928 KB
testcase_15 AC 66 ms
76,908 KB
testcase_16 AC 84 ms
76,980 KB
testcase_17 AC 262 ms
83,924 KB
testcase_18 AC 253 ms
83,824 KB
testcase_19 AC 228 ms
82,284 KB
testcase_20 AC 161 ms
79,704 KB
testcase_21 AC 252 ms
82,660 KB
testcase_22 AC 114 ms
77,468 KB
testcase_23 AC 147 ms
78,428 KB
testcase_24 AC 146 ms
78,512 KB
testcase_25 AC 223 ms
81,656 KB
testcase_26 AC 221 ms
81,452 KB
testcase_27 AC 221 ms
81,392 KB
testcase_28 AC 190 ms
79,920 KB
testcase_29 AC 253 ms
83,376 KB
testcase_30 AC 250 ms
82,576 KB
testcase_31 AC 106 ms
77,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase


def tmp(N):
    l = 0
    r = 10 ** 6
    while r - l > 1:
        m = (l + r) // 2
        M = m * 2
        if M * (M + 2) // 4 > N:
            r = m
        else:
            l = m
    return l * 2


N = int(input())
ans = ""
p, q = 0, 1

while N > 1:
    L = tmp(N)
    for i in range(L):
        if i % 2 == 0:
            ans += ascii_lowercase[p]
        else:
            ans += ascii_lowercase[q]
    N -= L * (L + 2) // 4
    p = (p + 2) % len(ascii_lowercase)
    q = (q + 2) % len(ascii_lowercase)

if N:
    ans += ascii_lowercase[p]

print(ans)
0