結果

問題 No.282 おもりと天秤(2)
ユーザー climpet
提出日時 2015-09-21 12:48:55
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 177 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 53,564 KB
実行使用メモリ 25,604 KB
平均クエリ数 1.04
最終ジャッジ日時 2024-07-16 06:21:30
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
	ios::sync_with_stdio(false);

	int n;
	cin >> n;
	if(n != 2){ return 1; }

	cout << "? 0 0 0 0 \n";
	cout << "! 1 2\n";
}
0