結果

問題 No.701 ひとりしりとり
ユーザー hedwig100
提出日時 2020-05-06 16:59:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-06-28 18:43:32
合計ジャッジ時間 1,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000000)
input = sys.stdin.readline
MOD = 10 ** 9 + 7
INF = 10 ** 15
from itertools import permutations
def main():
    N = int(input())
    if N == 1:
        print('n')
        return
    shiritori = ['a']

    itr = permutations('abcedfghijklmnopqrstuvwxyz',18)
    before = ''.join(next(itr))
    i = 0
    length = 1
    while length < N:
        if length == N - 1:
            shiritori.append(chr(i%26 + 97) + 'n')
            break
        if i%26 == 13:
            i += 1
            continue
        word = chr(i%26 + 97)
        if word == 'a':
            before = ''.join(next(itr))
        word += before
        if i%26 == 12:
            word += chr((i + 2)%26 + 97)
        else:
            word += chr((i + 1)%26 + 97)
        shiritori.append(word)
        i += 1
        length += 1
    print('\n'.join(shiritori))
if __name__ == '__main__':
    main()
    
0