結果

問題 No.2925 2-Letter Shiritori
ユーザー vwxyzvwxyz
提出日時 2024-10-12 15:34:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 27,216 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 15:34:24
合計ジャッジ時間 2,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
26,576 KB
testcase_01 AC 89 ms
26,960 KB
testcase_02 AC 93 ms
27,088 KB
testcase_03 AC 87 ms
27,088 KB
testcase_04 AC 87 ms
26,576 KB
testcase_05 AC 88 ms
26,960 KB
testcase_06 AC 110 ms
26,832 KB
testcase_07 AC 85 ms
26,704 KB
testcase_08 AC 89 ms
26,832 KB
testcase_09 AC 86 ms
27,216 KB
testcase_10 AC 86 ms
26,832 KB
testcase_11 AC 87 ms
27,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=input()
print("?",a+a)
while True:
    s0,s1=input().split()
    if s0=="!":
        break
    a,b=s1
    print("?",b+a)
0