結果

問題 No.2925 2-Letter Shiritori
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 15:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 69,892 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 15:20:49
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
69,828 KB
testcase_01 AC 94 ms
68,984 KB
testcase_02 AC 99 ms
69,200 KB
testcase_03 AC 97 ms
69,444 KB
testcase_04 AC 109 ms
68,524 KB
testcase_05 AC 95 ms
68,292 KB
testcase_06 AC 97 ms
69,212 KB
testcase_07 AC 96 ms
69,892 KB
testcase_08 AC 95 ms
69,068 KB
testcase_09 AC 100 ms
68,840 KB
testcase_10 AC 99 ms
68,680 KB
testcase_11 AC 100 ms
69,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = input()

print('?', A+A)

while 1:
    t,s = input().split()
    if t == '!': exit()
    print('?', s[::-1])
0