結果

問題 No.4 おもりと天秤
ユーザー ssssskkkkk
提出日時 2017-11-27 18:55:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 69,160 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 11:09:06
合計ジャッジ時間 1,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <numeric>
#include <algorithm>
using namespace std;
typedef pair<int, int> pii;
int N;
bool dp[10001][10001];
string ans = "impossible";
int main(void) {
	cin >> N;
	for (int i = 0; i < N; ++i) cin >> dp[0][i];
	for (int i = 0; i < 10000; ++i) for (int j = 0; j < 10000; ++j) int i = 0;
	cout << ans << endl;
	return 0;
}
0