結果
| 問題 | No.2925 2-Letter Shiritori |
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2024-10-12 15:17:56 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 178 ms / 2,000 ms |
| + 2µs | |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 67 ms |
| コンパイル使用メモリ | 81,776 KB |
| 実行使用メモリ | 55,096 KB |
| 平均クエリ数 | 26.00 |
| 最終ジャッジ日時 | 2026-09-14 21:01:07 |
| 合計ジャッジ時間 | 1,965 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
first = input()
s = set()
print('? '+first+first,flush=True)
s.add(first)
for _ in range(25):
shiritori = input()
print('? '+shiritori[3]+first,flush=True)
H20