結果
問題 | No.1237 EXP Multiple! |
ユーザー | fura |
提出日時 | 2020-09-26 17:11:39 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 534 bytes |
コンパイル時間 | 1,928 ms |
コンパイル使用メモリ | 193,712 KB |
最終ジャッジ日時 | 2025-01-14 22:28:55 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 18 ms
6,816 KB |
testcase_02 | AC | 25 ms
6,816 KB |
testcase_03 | AC | 26 ms
6,820 KB |
testcase_04 | AC | 27 ms
6,816 KB |
testcase_05 | AC | 17 ms
6,820 KB |
testcase_06 | AC | 17 ms
6,820 KB |
testcase_07 | AC | 16 ms
6,816 KB |
testcase_08 | AC | 16 ms
6,820 KB |
testcase_09 | AC | 17 ms
6,816 KB |
testcase_10 | AC | 16 ms
6,820 KB |
testcase_11 | AC | 16 ms
6,820 KB |
testcase_12 | AC | 16 ms
6,820 KB |
testcase_13 | AC | 16 ms
6,816 KB |
testcase_14 | AC | 16 ms
6,820 KB |
testcase_15 | AC | 16 ms
6,824 KB |
testcase_16 | AC | 16 ms
6,820 KB |
testcase_17 | AC | 15 ms
6,816 KB |
testcase_18 | AC | 16 ms
6,820 KB |
testcase_19 | AC | 16 ms
6,816 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | int n; scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:13:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | rep(i,n) scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using lint=long long; const int MOD=1e9+7; int main(){ int n; scanf("%d",&n); vector<int> a(n); rep(i,n) scanf("%d",&a[i]); if(count(a.begin(),a.end(),0)>0){ puts("-1"); return 0; } lint ans=1; rep(i,n) if(a[i]>1) { lint fact=1; rep(j,a[i]){ fact*=j+1; if(fact>100) break; } if(fact>100){ ans=MOD+1; break; } rep(j,fact){ if(ans>MOD) break; ans*=a[i]; } } printf("%lld\n",MOD%ans); return 0; }