結果

問題 No.632 穴埋め門松列
ユーザー Project2017C2Project2017C2
提出日時 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,285 ms
コンパイル使用メモリ 163,648 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 20:07:13
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘ll gcd(ll, ll)’ 内:
main.cpp:24:17: 警告: 制御が非 void 関数の終りに到達しました [-Wreturn-type]
   24 |         else gcd(b, a%b);
      |              ~~~^~~~~~~~

ソースコード

diff #

#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;
}
0