結果
問題 | No.2925 2-Letter Shiritori |
ユーザー | にゃんこ(仮) |
提出日時 | 2024-10-17 23:15:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 213 bytes |
コンパイル時間 | 507 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 70,516 KB |
平均クエリ数 | 26.00 |
最終ジャッジ日時 | 2024-10-17 23:15:54 |
合計ジャッジ時間 | 2,788 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 82 ms
69,196 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
a = input() chrs = {chr(i): {chr(j) for j in range(97,123)} for i in range(97,123)} print("? " + a + chrs[a].pop()) while (S := input())[0] != "!": chrs[S[2]].remove(S[3]) print("? " + S[3] + chrs[S[3]].pop())