結果

問題 No.701 ひとりしりとり
ユーザー ic-eguciic-eguci
提出日時 2019-01-28 14:30:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-15 03:40:18
合計ジャッジ時間 2,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 WA -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

def foo(n):
    def bar():
        # n以外。
        alph = [_ for _ in 'abcdefghijklmopqrstuvwxyz']
        # nは100000までだから4文字で十分。
        i = 0
        for _1 in alph:
            for _2 in alph:
                for _3 in alph:
                    for _4 in alph:
                        i += 1
                        yield _1+_2+_3+('n' if i==n else _4)
    for i,word in enumerate(bar()):
        if i == n:
            break
        print(word)

if __name__ == '__main__':
    foo(int(input()))
0