結果

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

ソースコード

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/64%2)cout<<-1<<endl;
    else cout<<M+D<<endl;
}
//2x4x8o16o32o64x
0