結果

問題 No.2925 2-Letter Shiritori
ユーザー hatonobuhatonobu
提出日時 2024-10-14 11:30:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 84,168 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-14 11:30:19
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
83,784 KB
testcase_01 AC 123 ms
83,656 KB
testcase_02 AC 130 ms
83,912 KB
testcase_03 AC 126 ms
83,528 KB
testcase_04 AC 137 ms
83,656 KB
testcase_05 AC 149 ms
83,272 KB
testcase_06 AC 137 ms
83,528 KB
testcase_07 AC 131 ms
83,784 KB
testcase_08 AC 125 ms
83,400 KB
testcase_09 AC 123 ms
83,656 KB
testcase_10 AC 124 ms
83,784 KB
testcase_11 AC 124 ms
84,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
#import pypyjit
import itertools
import heapq
import bisect
import queue

#pypyjit.set_param("max_unroll_recursion=-1")
#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353
INF = 8 * 10**18

a = input()
print("? " + a*2, flush=True)
while(True):
  a,b = ml()
  if a == "!":
    exit()
  else:
    print("? " + b[::-1], flush=True)
0