結果
| 問題 | No.2925 2-Letter Shiritori |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2024-10-12 14:59:22 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 114 ms / 2,000 ms |
| + 1µs | |
| コード長 | 126 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 80,604 KB |
| 実行使用メモリ | 54,528 KB |
| 平均クエリ数 | 26.00 |
| 最終ジャッジ日時 | 2026-09-14 20:36:40 |
| 合計ジャッジ時間 | 2,073 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
c = input()
print('?', c + c)
while True:
op, s = input().split()
if op == '!':
break
print('?', s[1] + c)
Kude