結果

問題 No.2842 Birthday
ユーザー SotaSota
提出日時 2024-08-25 08:55:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,359 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 95,544 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 08:55:06
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count
#include <string>		//string,getline, to_string
#include <cstdlib>		//abs(int)
#include <utility>		//swap, pair
#include <deque>		//deque
#include <climits>		//INT_MAX
#include <bitset>		//bitset
#include <cmath>		//sqrt, ceil. M_PI, pow, sin
#include <ios>			//fixed
#include <iomanip>		//setprecision
#include <sstream>		//stringstream
#include <numeric>		//gcd, assumlate
#include <random>		//randam_device
#include <limits>		//numeric_limits
#include <time.h>       //tm

using namespace std;
constexpr int64_t D_MOD = 1000000007;
constexpr int64_t F_MOD = 998244353;


inline int Calc_Age(int yy1, int mm1, int dd1, int yy2, int mm2, int dd2) {
	//年齢

	if (yy1 > yy2) {
		return -1;
	}
	else if (yy1 == yy2) {
		if (mm1 > mm2) {
			return -1;
		}
		else if (mm1 == mm2) {
			if (dd1 > dd2) {
				return -1;
			}
			else {
				return 0;
			}
		}
		else {
			return 0;
		}
	}
	else {
		if (mm1 > mm2) {
			return yy2 - yy1 - 1;
		}
		else if (mm1 == mm2) {
			if (dd1 > dd2) {
				return yy2 - yy1 - 1;
			}
			else {
				return yy2 - yy1;
			}
		}
		else {
			return yy2 - yy1;
		}
	}
	
}

int main() {

	int M, D;
	cin >> M >> D;

	int ans = Calc_Age(2000, 8, 22, 2024, M, D);
    
	cout << ans << endl;

    return 0;

}
0