結果
| 問題 |
No.8058 M + D Problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-25 15:23:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 251 bytes |
| コンパイル時間 | 1,480 ms |
| コンパイル使用メモリ | 167,204 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-27 06:39:16 |
| 合計ジャッジ時間 | 2,748 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 11 |
ソースコード
#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/8%2)cout<<-1<<endl;
else cout<<M+D<<endl;
}
//2x4x8o