結果

問題 No.2925 2-Letter Shiritori
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-12 16:34:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 69,192 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 16:34:09
合計ジャッジ時間 2,101 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
68,424 KB
testcase_01 AC 84 ms
68,424 KB
testcase_02 AC 82 ms
68,712 KB
testcase_03 AC 82 ms
68,944 KB
testcase_04 AC 89 ms
68,808 KB
testcase_05 AC 87 ms
69,064 KB
testcase_06 AC 83 ms
68,168 KB
testcase_07 AC 88 ms
68,808 KB
testcase_08 AC 84 ms
69,180 KB
testcase_09 AC 82 ms
68,168 KB
testcase_10 AC 86 ms
69,192 KB
testcase_11 AC 99 ms
68,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.set_int_max_str_digits(0)
inf = 1<<60
MOD = 998244353

default = input()
shote = default + default
#material = []
alphas = 'abcdefghijklmnopqrstuvwxyz'
#for s in alphas:
#    if s == default:
#        continue
#    material.append(s + default)

# 'default'でおわるやつでいじめる
#material.append(default + default)
#print(material)

print('?', shote)
while True:
    sign, t = input().split()
    if sign == '?':
        ans = t[-1] + default
        print('?', ans)
    else:
        break
0