結果

問題 No.405 ローマ数字の腕時計
ユーザー Kaz_nlKaz_nl
提出日時 2017-08-26 11:13:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 56,404 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 17:38:47
合計ジャッジ時間 1,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 WA -
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:15: warning: ‘a’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   17 |   cout << t[a % 12] << endl;
      |             ~~^~~~

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

string t[] = { "", "I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII" };

int main() {
  string s;
  int n, a;
  cin >> s >> n;
  for (int i = 0; i <=12 ; i++) {
    if (s == t[i]) {
      a = i + (n % 24);
      if (a < 0) a = 24 + a;
    }
  }
  cout << t[a % 12] << endl;
}
0