結果

問題 No.254 文字列の構成
ユーザー rlangevinrlangevin
提出日時 2023-07-18 12:10:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-09-18 11:32:35
合計ジャッジ時間 3,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,164 KB
testcase_01 AC 41 ms
52,796 KB
testcase_02 AC 37 ms
52,944 KB
testcase_03 AC 38 ms
52,384 KB
testcase_04 AC 39 ms
53,372 KB
testcase_05 AC 38 ms
52,120 KB
testcase_06 AC 39 ms
52,080 KB
testcase_07 AC 38 ms
53,012 KB
testcase_08 AC 38 ms
53,112 KB
testcase_09 AC 37 ms
53,120 KB
testcase_10 AC 39 ms
53,400 KB
testcase_11 AC 38 ms
53,216 KB
testcase_12 AC 39 ms
52,488 KB
testcase_13 AC 40 ms
53,348 KB
testcase_14 AC 47 ms
61,040 KB
testcase_15 AC 48 ms
62,320 KB
testcase_16 AC 51 ms
66,416 KB
testcase_17 AC 57 ms
76,480 KB
testcase_18 AC 59 ms
76,720 KB
testcase_19 AC 56 ms
75,300 KB
testcase_20 AC 54 ms
71,824 KB
testcase_21 AC 58 ms
75,552 KB
testcase_22 AC 51 ms
68,224 KB
testcase_23 AC 53 ms
70,744 KB
testcase_24 AC 53 ms
71,756 KB
testcase_25 AC 56 ms
74,440 KB
testcase_26 AC 55 ms
74,948 KB
testcase_27 AC 55 ms
74,804 KB
testcase_28 AC 53 ms
73,848 KB
testcase_29 AC 56 ms
76,352 KB
testcase_30 AC 56 ms
76,308 KB
testcase_31 AC 51 ms
66,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(x):
    yes = 0
    no = 10 ** 5
    while no - yes != 1:
        mid = (yes + no)//2
        if mid * mid <= x:
            yes = mid
        else:
            no = mid
    return yes

now = 0
while N:
    M = f(N)
    N -= M * M
    L = [chr(now + ord("a")), chr(now + ord("a") + 1)] * (M - 1)
    L.append(chr(now + ord("a")))
    ans.extend(L)
    now += 2

print(*ans, sep="")
0