結果

問題 No.701 ひとりしりとり
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-22 03:48:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 97,404 KB
最終ジャッジ日時 2024-06-10 17:17:07
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
94,712 KB
testcase_01 AC 148 ms
94,872 KB
testcase_02 AC 144 ms
95,148 KB
testcase_03 AC 145 ms
95,020 KB
testcase_04 AC 141 ms
94,964 KB
testcase_05 AC 146 ms
95,228 KB
testcase_06 AC 143 ms
94,916 KB
testcase_07 AC 146 ms
94,888 KB
testcase_08 AC 151 ms
95,036 KB
testcase_09 AC 162 ms
94,740 KB
testcase_10 AC 155 ms
97,404 KB
testcase_11 AC 172 ms
97,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = [set() for _ in range(26)]
import itertools
for p in itertools.product(range(26), repeat=4):
    s = ''
    for i in range(4):
        s += chr(p[i]+ord('a'))
    if s[-1] == 'n':
        continue
    X[ord(s[0])-ord('a')].add(s)
#print(X[0].pop())

c = 0
for i in range(n):
    if i != n-1:
        s = X[c].pop()
        print(s)
        c = ord(s[-1])-ord('a')
    else:
        print(s[-1]+'n')
0