結果
問題 | No.339 何人が回答したのか |
ユーザー | syoken_desuka |
提出日時 | 2016-07-12 00:41:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,051 bytes |
コンパイル時間 | 1,500 ms |
コンパイル使用メモリ | 157,824 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 14:09:12 |
合計ジャッジ時間 | 11,638 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
コンパイルメッセージ
main.cpp:32: warning: "dbg2" redefined 32 | #define dbg2 {} | main.cpp:27: note: this is the location of the previous definition 27 | #define dbg2(var0, var1) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; dbg(var1); } | main.cpp:33: warning: "dbg3" redefined 33 | #define dbg3 {} | main.cpp:28: note: this is the location of the previous definition 28 | #define dbg3(var0, var1, var2) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; dbg2(var1, var2); } | main.cpp:34: warning: "dbgArray" redefined 34 | #define dbgArray {} | main.cpp:29: note: this is the location of the previous definition 29 | #define dbgArray(a,n) {std::cerr << (#a) << "="; rep(i,n){std::cerr <<(a[i])<<",";} cerr<<endl;} | main.cpp: In function ‘ll gcd(ll, ll)’: main.cpp:50:47: warning: control reaches end of non-void function [-Wreturn-type] 50 | ll gcd(ll x, ll y) { if (y == 0) return x; gcd(y, x% y); } | ~~~^~~~~~~~~
ソースコード
#include "bits/stdc++.h" using namespace std; //諸機能 #pragma region MACRO #define putans(x) cerr << "answer: "; cout << (x) << endl #define dputans(x) cerr << "answer: "; cout << setprecision(10) << (double)(x) << endl #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define RREP(i,a,n) for(int i=(int)(n); i>= a; i--) #define rep(i,n) REP(i,0,n) #define rrep(i,n) RREP(i,0,n) #define all(a) begin((a)),end((a)) #define mp make_pair #define exist(container, n) ((container).find((n)) != (container).end()) #define substr(s,i,l) string((s), (i), (l)) #define tos(x) (to_string((x))) #ifdef _DEBUG //ファイルからテストデータを読み込む std::ifstream ifs("data.txt"); #define input ifs #else #define input cin #endif #pragma endregion //デバッグなどの支援 #pragma region CODING_SUPPORT #define dbg(var0) { std::cerr << ( #var0 ) << "=" << ( var0 ) << endl; } #define dbg2(var0, var1) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; dbg(var1); } #define dbg3(var0, var1, var2) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; dbg2(var1, var2); } #define dbgArray(a,n) {std::cerr << (#a) << "="; rep(i,n){std::cerr <<(a[i])<<",";} cerr<<endl;} #ifndef _DEBUG #define dbg1 {} #define dbg2 {} #define dbg3 {} #define dbgArray {} #endif #pragma endregion //typedef(書き換える、書き足す可能性ある) #pragma region TYPE_DEF typedef long long ll; typedef pair<int,int> pii; typedef pair<string,string> pss;typedef pair<int,string>pis;typedef pair<string,int>psi; typedef vector<string> vs; typedef vector<int> vi; #pragma endregion //諸々の定数(書き換える可能性ある) #pragma region CONST_VAL #define PI (2*acos(0.0)) #define EPS (1e-9) #define MOD (int)(1e9 + 7) #pragma endregion ll gcd(ll x, ll y) { if (y == 0) return x; gcd(y, x% y); } int main() { int n; input >> n; int a[101]; int b[101]; rep(i, n) { input >> a[i]; b[i] = (100 / gcd(100,a[i])); } int ans = a[0]; rep(i, n-1) { ans = ( b[i + 1] * b[i] ) / gcd(b[i+1],b[i]); } putans(ans); return 0; }