結果

問題 No.3191 Operation Puzzle
ユーザー iastm
提出日時 2025-07-11 16:08:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 80,476 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2025-07-11 16:09:03
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
	int N;
	std::cin >> N;
	while (N--) {
		int a;
		std::cin >> a;
	}
	int X;
	std::cin >> X;
	std::cout << "Yes" << std::endl;
	for (int i = 0; i < 4; i++) std::cout << X << ' ' << X << ' ' << X << ' ' << X << std::endl;
}
0