結果

問題 No.701 ひとりしりとり
ユーザー hedwig100hedwig100
提出日時 2020-05-06 16:52:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 10,784 KB
実行使用メモリ 20,616 KB
最終ジャッジ日時 2023-09-11 04:05:14
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,240 KB
testcase_01 AC 16 ms
8,312 KB
testcase_02 AC 17 ms
8,252 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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('abcedfghiijklmnopqrstubwxyz',18)
    before = ''.join(next(itr))
    i = 0
    while i + 1 < N:
        if i == N - 2:
            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
    print('\n'.join(shiritori))
if __name__ == '__main__':
    main()
    
0