結果
問題 | No.405 ローマ数字の腕時計 |
ユーザー | kazuppa |
提出日時 | 2024-08-02 14:34:15 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,886 bytes |
コンパイル時間 | 5,946 ms |
コンパイル使用メモリ | 337,372 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-02 14:34:22 |
合計ジャッジ時間 | 6,949 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,a,b) for(it i=(it)(a);i<=(it)b;i++) #define all(v) v.begin(), v.end() #define rall(v) v.rbegin(), v.rend() #define moda 998244353LL #define modb 1000000007LL #define dai 2500000000000000000LL #define tyu 2500000000 #define sho -dai #define eps 1e-14 #define yn(x) cout<<(x ? "Yes":"No")<<endl; #define YN(x) cout<<(x ? "YES":"NO")<<endl; using it=long long; using ll=long long; using un=unsigned long long; using db=long double; using st=string; using ch=char; using bo=bool; using P=pair<it,it>; using mint=modint; using vi=vector<it>; using vd=vector<db>; using vs=vector<st>; using vc=vector<ch>; using vb=vector<bo>; using vp=vector<P>; using vm=vector<mint>; using sp=set<P>; using ss=set<st>; using si=set<it>; using vvi=vector<vi>; using vvd=vector<vd>; using vvs=vector<vs>; using vvb=vector<vb>; using vvc=vector<vc>; using vvp=vector<vp>; using vvm=vector<vm>; using vsi=vector<si>; using vsp=vector<sp>; using vvsi=vector<vsi>; using vvsp=vector<vsp>; using vvvi=vector<vvi>; using vvvd=vector<vvd>; using vvvvi=vector<vvvi>; const it dx[4]={0,1,0,-1}; const it dy[4]={1,0,-1,0}; st mo(it n){ if(n==1)return "I"; if(n==2)return "II"; if(n==3)return "III"; if(n==4)return "IIII"; if(n==5)return "V"; if(n==6)return "VI"; if(n==7)return "VII"; if(n==8)return "VIII"; if(n==9)return "VIIII"; if(n==10)return "X"; if(n==11)return "XI"; return "XII"; } it su(st n){ if(n=="I")return 1; if(n=="II")return 2; if(n=="III")return 3; if(n=="IIII")return 4; if(n=="V")return 5; if(n=="VI")return 6; if(n=="VII")return 7; if(n=="VIII")return 8; if(n=="VIIII")return 9; if(n=="X")return 10; if(n=="XI")return 11; return 12; } int main(){ st n;it t;cin>>n>>t; it i=su(n); i=(i+t%12+12)%12; cout<<mo(i+(bo)(!i)*12)<<endl; }