結果
問題 | No.701 ひとりしりとり |
ユーザー | hedwig100 |
提出日時 | 2020-05-06 16:55:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 875 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 21,376 KB |
最終ジャッジ日時 | 2024-06-28 18:38:39 |
合計ジャッジ時間 | 2,638 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,496 KB |
testcase_01 | AC | 34 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,624 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 | - |
ソースコード
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 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()