結果

問題 No.2925 2-Letter Shiritori
ユーザー うにれうにれ
提出日時 2024-10-12 15:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 70,356 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 15:38:33
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
70,356 KB
testcase_01 AC 87 ms
68,928 KB
testcase_02 AC 93 ms
68,908 KB
testcase_03 AC 89 ms
68,328 KB
testcase_04 AC 86 ms
70,084 KB
testcase_05 AC 88 ms
68,264 KB
testcase_06 AC 104 ms
69,416 KB
testcase_07 AC 88 ms
70,204 KB
testcase_08 AC 87 ms
68,196 KB
testcase_09 AC 87 ms
68,396 KB
testcase_10 AC 91 ms
69,388 KB
testcase_11 AC 88 ms
70,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
mod = 998244353
mod2 = 10**9+7

a = input()
last = a
for i in range(26):
    print("? "+last+a)
    ans = input()
    if ans == "! WIN" or ans == "! LOSE":exit()
    last = ans[3]
0