結果

問題 No.1237 EXP Multiple!
ユーザー startcppstartcpp
提出日時 2022-01-22 15:31:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 63,360 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 14:42:49
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 30 ms
5,376 KB
testcase_15 AC 29 ms
5,376 KB
testcase_16 AC 29 ms
5,376 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//答え「で」10^9 + 7を割った余りなので、答え > 10^9 + 7 なら速攻で0を返してOK。
#include <iostream>
#define int long long
using namespace std;

int mod = 1000000007;
int n;
int a[200000];

signed main() {
	int i;
	
	int ans = 1;
	
	cin >> n;
	for (i = 0; i < n; i++) {
		cin >> a[i];
		if (a[i] >= 4) { cout << 0 << endl; return 0; }
		if (a[i] == 0) { cout << -1 << endl; return 0; }
		if (a[i] == 2) { ans *= 4; }
		if (a[i] == 3) { ans *= 729; }
		if (ans > mod) { cout << 0 << endl; return 0; }
	}
	
	cout << mod % ans << endl;
	return 0;
}
0