結果

問題 No.188 HAPPY DAY
ユーザー mumucodermumucoder
提出日時 2018-10-27 13:52:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 67,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-04-29 22:14:02
合計ジャッジ時間 1,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <string>


int sum_day_number(int day) {
	std::string day_str(std::to_string(day));
	int result = 0;
	for (auto i = day_str.begin(); i != day_str.end(); i++) {
		result += (*i - '0');
	}
	std::cout << day << std::endl;
	std::cout << result << std::endl;
	return result;
}

int main(int argc, char *argv[]) {
	std::map<int, int> month_and_days({
		{1, 31},
		{2, 28},
		{3, 31},
		{4, 30},
		{5, 31},
		{6, 30},
		{7, 31},
		{8, 31},
		{9, 30},
		{10, 31},
		{11, 30},
		{12, 31}
	});

	int happy_days = 0;
	for (auto month_entry: month_and_days) {
		int month = month_entry.first;
		int days = month_entry.second;
		for (int j = 1; j < days; j++) {
			if (month == sum_day_number(j)) {
				happy_days++;
			}
		}
	}
	std::cout << happy_days << std::endl;
	return 0;
}
0