結果

問題 No.2925 2-Letter Shiritori
ユーザー ThetaTheta
提出日時 2024-11-20 15:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 69,984 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-11-20 15:11:25
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
69,984 KB
testcase_01 AC 94 ms
69,420 KB
testcase_02 AC 91 ms
69,312 KB
testcase_03 AC 94 ms
69,372 KB
testcase_04 AC 92 ms
69,288 KB
testcase_05 AC 91 ms
69,348 KB
testcase_06 AC 90 ms
69,048 KB
testcase_07 AC 113 ms
69,944 KB
testcase_08 AC 96 ms
69,204 KB
testcase_09 AC 99 ms
68,968 KB
testcase_10 AC 100 ms
69,800 KB
testcase_11 AC 100 ms
69,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    start = input()
    print(f"? {start*2}", flush=True)
    used = set((start*2, ))
    while True:
        res, arg = input().split()
        if res == "!":
            return
        used.add(arg)
        print(f"? {arg[-1]}{start}", flush=True)


if __name__ == "__main__":
    main()
0