結果

問題 No.254 文字列の構成
ユーザー H3PO4H3PO4
提出日時 2020-09-10 09:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-21 16:03:17
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 37 ms
10,624 KB
testcase_17 AC 102 ms
10,880 KB
testcase_18 AC 102 ms
10,752 KB
testcase_19 AC 91 ms
10,880 KB
testcase_20 AC 68 ms
10,752 KB
testcase_21 AC 96 ms
10,880 KB
testcase_22 AC 49 ms
10,752 KB
testcase_23 AC 58 ms
10,880 KB
testcase_24 AC 60 ms
10,752 KB
testcase_25 AC 87 ms
10,752 KB
testcase_26 AC 83 ms
10,752 KB
testcase_27 AC 86 ms
10,880 KB
testcase_28 AC 77 ms
10,880 KB
testcase_29 AC 103 ms
10,752 KB
testcase_30 AC 92 ms
10,880 KB
testcase_31 AC 43 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from math import isqrt

N = int(input())

ans = ''

sqN = isqrt(N)
it_ab = itertools.cycle('ab')
for _ in range(sqN * 2 - 1):
    ans += next(it_ab)
N -= sqN ** 2

sqN = isqrt(N)
it_ab = itertools.cycle('cd')
for _ in range(sqN * 2 - 1):
    ans += next(it_ab)
N -= sqN ** 2

it_xyz = itertools.cycle('xyz')
for _ in range(N):
    ans += next(it_xyz)

# assert len(ans) <= 10 ** 5
print(ans)
0