結果
| 問題 | No.3237 Find the Treasure! |
| コンテスト | |
| ユーザー |
highlighter
|
| 提出日時 | 2025-08-10 16:16:25 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 1,938 ms |
| コンパイル使用メモリ | 329,400 KB |
| 実行使用メモリ | 6,016 KB |
| 平均クエリ数 | 2.00 |
| 最終ジャッジ日時 | 2026-07-13 22:34:57 |
| 合計ジャッジ時間 | 7,922 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 22 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int N;
cin >> N;
cout << '?';
for(int i=0;i<N-1;i++){
int u,v;
cin >> u >> v;
cout << ' ' << u;
}
cout << endl;
string S;
cin >> S;
cout << S << endl;
}
highlighter