結果

問題 No.405 ローマ数字の腕時計
ユーザー ant2357ant2357
提出日時 2016-08-05 22:40:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,775 bytes
コンパイル時間 1,484 ms
コンパイル使用メモリ 165,716 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 00:13:44
合計ジャッジ時間 2,742 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int func(std::string)’ 内:
main.cpp:47:1: 警告: 制御が非 void 関数の終りに到達しました [-Wreturn-type]
   47 | }
      | ^
main.cpp: 関数 ‘std::string func2(int)’ 内:
main.cpp:62:1: 警告: 制御が非 void 関数の終りに到達しました [-Wreturn-type]
   62 | }
      | ^

ソースコード

diff #

#include "bits/stdc++.h"
#include <unordered_set>

#define REP(i, n) for(decltype(n) i = 0; i < (n); i++)
#define REP2(i, x, n) for(decltype(x) i = (x); i < (n); i++)
#define REP3(i, x, n) for(decltype(x) i = (x); i <= (n); i++)
#define RREP(i, n) for (decltype(n) i = (n) - 1;i >= 0; i--)

#define ALL(a) (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define DESCSORT(c) sort(c.begin(), c.end(), greater<int>())

#define LL long long int
#define LD long double

#define INF 1000000000
#define PI 3.14159265358979323846

#define _CRT_SECURE_NO_WARNINGS

using namespace std;

// N, E, S, W
const int dx[4] = { -1, 0,  1,  0 };
const int dy[4] = { 0, 1,  0, -1 };

typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<LL> vll;
//==============================================

int func(string s) {
	if (s == "I") return 1;
	if (s == "II") return 2;
	if (s == "III") return 3;
	if (s == "IIII") return 4;
	if (s == "V") return 5;
	if (s == "VI") return 6;
	if (s == "VII") return 7;
	if (s == "VIII") return 8;
	if (s == "IX") return 9;
	if (s == "X") return 10;
	if (s == "XI") return 11;
	if (s == "XII") return 12;
}

string func2(int a) {
	if (a == 1) return "I";
	if (a == 2) return "II";
	if (a == 3) return "III";
	if (a == 4) return "IIII";
	if (a == 5) return "V";
	if (a == 6) return "VI";
	if (a == 7) return "VII";
	if (a == 8) return "VIII";
	if (a == 9) return "IX";
	if (a == 10) return "X";
	if (a == 11) return "XI";
	if (a == 12) return "XII";
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	string s;
	int t;
	cin >> s >> t;

	int sTime = func(s);
	sTime += t;

	int ans = sTime % 12;

	if (ans < 0) {
		ans += 12 ;
	}

	cout << func2(ans) << "\n";
	return 0;
}
0