結果

問題 No.8058 M + D Problem
ユーザー shiomusubi496
提出日時 2020-07-25 15:24:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 165,640 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 06:39:45
合計ジャッジ時間 2,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int d[]={0,31,29,31,30,31,30,31,31,30,31,30,31};
int main(){
    int M,D,cnt;
    cin>>M>>D;
    cnt=D;
    for(int i=0;i<M;i++)cnt+=d[i];
    if(cnt/16%2)cout<<-1<<endl;
    else cout<<M+D<<endl;
}
//2x4x8o18o
0