結果
| 問題 | No.701 ひとりしりとり | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-06-22 22:43:33 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 1,616 ms / 2,000 ms | 
| コード長 | 456 bytes | 
| コンパイル時間 | 137 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 11,264 KB | 
| 最終ジャッジ日時 | 2024-07-03 18:57:56 | 
| 合計ジャッジ時間 | 3,006 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 12 | 
ソースコード
from random import randrange ## randrange(1,10) return 1 <= x < 10 
from random import randint ## randint(1,10) return 1 <= x <= 10
n = int(input())
now = 'a'
for i in range(n):
    ans = now
    for j in range(18):
        ans += (chr)(ord('a') + randrange(0,26))
    now = (chr)(ord(now) + 1)
    if now == 'n':
        now = 'o'
    if now == '{':
        now = 'a'
    
    if i==n-1:
        ans += 'n'
    else:
        ans += now
    print(ans)
            
            
            
        