結果
| 問題 |
No.701 ひとりしりとり
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-22 22:40:51 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 419 bytes |
| コンパイル時間 | 151 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,264 KB |
| 最終ジャッジ日時 | 2024-07-03 18:57:43 |
| 合計ジャッジ時間 | 3,048 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 6 RE * 1 |
ソースコード
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 i==n-1:
ans += 'n'
else:
ans += now
print(ans)