結果
問題 |
No.701 ひとりしりとり
|
ユーザー |
|
提出日時 | 2020-12-24 09:37:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 148 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,032 KB |
最終ジャッジ日時 | 2024-09-21 16:50:24 |
合計ジャッジ時間 | 4,325 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 12 |
ソースコード
import random import string n=int(input()) s='a' for _ in [0]*n: s=s[-1]+''.join([random.choice(string.ascii_lowercase) for _ in [0]*19]) print(s)