結果

問題 No.624 Santa Claus and The Last Dungeon
ユーザー e869120e869120
提出日時 2017-12-13 20:35:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 65,140 KB
実行使用メモリ 25,592 KB
平均クエリ数 2001.00
最終ジャッジ日時 2024-07-16 14:57:20
合計ジャッジ時間 12,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
25,208 KB
testcase_01 AC 136 ms
25,208 KB
testcase_02 AC 136 ms
24,824 KB
testcase_03 AC 135 ms
24,824 KB
testcase_04 AC 137 ms
25,208 KB
testcase_05 AC 135 ms
25,208 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int a[200], Q;
int main() {
	cin >> Q;
	for (int i = 0; i < 200; i++) {
		int maxn = -1, maxid = 0;
		for (int j = 0; j < 10; j++) {
			for (int k = 0; k < 200; k++) {
				if (k % 2 == 0 && k >= 2)cout << " ";
				if (k == i)cout << j; else cout << "0";
			}
			cout << endl;
			int V1, V2, V3; cin >> V1 >> V2 >> V3;
			int P = V2 + V3 * 2;
			if (maxn < P) { maxn = P; maxid = j; }
		}
		a[i] = maxid;
	}
	for (int i = 0; i < 200; i++) {
		if (i % 2 == 0 && i >= 2)cout << " ";
		cout << a[i];
	}
	cout << endl;
	return 0;
}
0