結果
問題 |
No.405 ローマ数字の腕時計
|
ユーザー |
![]() |
提出日時 | 2016-08-05 22:28:41 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 466 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 67,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 18:58:18 |
合計ジャッジ時間 | 1,194 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:25:7: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] 25 | tmp += t; | ~~~~^~~~
ソースコード
#include<iostream> #include<algorithm> #include<stdio.h> #include<stdlib.h> #include<vector> #include<string> #include<sstream> #include<math.h> using namespace std; int main(){ string s; int tmp; int t; cin >> s >> t; string str[12] = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"}; for(int i=0;i<12;i++){ if(s == str[i]) tmp = i; } tmp += t; tmp += 1200; tmp = tmp % 12; cout << str[tmp] << endl; return 0; }