結果
| 問題 |
No.405 ローマ数字の腕時計
|
| コンテスト | |
| ユーザー |
Rittai_3D
|
| 提出日時 | 2016-10-03 12:34:56 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 620 bytes |
| コンパイル時間 | 1,319 ms |
| コンパイル使用メモリ | 161,136 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 19:06:27 |
| 合計ジャッジ時間 | 2,156 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using pint = pair< int, int >;
int main()
{
const string number[] = { "I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII" };
string s {};
int t {};
cin >> s >> t;
int pos = 0;
for( int i=0 ; i<12 ; ++i ) {
if( number[i] == s ) {
pos = i;
break;
}
}
auto wrap = []( int x, int low, int high )
{
const int n = ( x - low ) % ( high - low );
return ( n >= 0 ) ? ( n + low ) : ( n + high );
};
cout << number[ wrap( pos + t, 0, 12 ) ] << endl;
}
Rittai_3D