結果
問題 | No.701 ひとりしりとり |
ユーザー | kyo1 |
提出日時 | 2020-12-21 12:14:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 17,572 KB |
最終ジャッジ日時 | 2024-09-21 12:52:57 |
合計ジャッジ時間 | 12,577 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
import itertools import string N = int(input()) i = 0 for s in itertools.product(string.ascii_lowercase, repeat=10): print("a" + "".join(s) + "a") i += 1 if i == N - 1: print("a" + "".join(s) + "n") break