結果
問題 | No.632 穴埋め門松列 |
ユーザー | Project2017C2 |
提出日時 | 2018-01-21 22:19:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 767 bytes |
コンパイル時間 | 1,425 ms |
コンパイル使用メモリ | 165,144 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 15:37:58 |
合計ジャッジ時間 | 1,842 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'll gcd(ll, ll)': main.cpp:24:17: warning: control reaches end of non-void function [-Wreturn-type] 24 | else gcd(b, a%b); | ~~~^~~~~~~~
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = long long; using IP = pair<int, int>; const ll linf = 1LL << 62; const int inf = 99999999; const int dx[4] = { 1,0,-1,0 }; const int dy[4] = { 0,1,0,-1 }; const ll atcoder = 1e9 + 7; #define Endl endl #define mp make_pair #define all(v) v.begin(),v.end() #define pb push_back #define pr(x) cout << x << endl #define chmax(x,y) x = max(x,y) #define chmin(x,y) x = min(x,y) #define rep(i,n) for(int i= 0;i<n;i++) ll gcd(ll a, ll b) {//最大公約数 if (a%b == 0)return b; else gcd(b, a%b); } ll lcm(ll a, ll b) {//最小公倍数 return (a / gcd(a, b))*b; } int main(){ char a, b, c; cin >> a >> b >> c; if (b == '2') pr(4); else if (b == '3')pr(1); else pr(14); //system("pause"); return 0; }