結果

問題 No.701 ひとりしりとり
ユーザー vwxyzvwxyz
提出日時 2024-04-13 15:47:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 196,980 KB
最終ジャッジ日時 2024-10-03 00:12:07
合計ジャッジ時間 12,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 833 ms
196,352 KB
testcase_01 AC 838 ms
196,284 KB
testcase_02 AC 865 ms
196,352 KB
testcase_03 AC 873 ms
196,096 KB
testcase_04 AC 859 ms
196,352 KB
testcase_05 AC 869 ms
196,608 KB
testcase_06 AC 851 ms
196,352 KB
testcase_07 AC 846 ms
196,096 KB
testcase_08 AC 866 ms
196,496 KB
testcase_09 AC 870 ms
196,480 KB
testcase_10 AC 872 ms
196,772 KB
testcase_11 AC 887 ms
196,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
queue={"a":[],"b":[]}
for bit in range(1,1<<20):
    S=""
    for i in range(20):
        if bit&1<<i:
            S+="a"
        else:
            S+="b"
    queue[S[0]].append(S)
ans="a"
for n in range(N):
    if n==N-1:
        ans=ans[:-1]+"n"
        print(ans)
        break
    print(ans)
    ans=queue[ans[-1]].pop()
0