結果
| 問題 | No.8058 M + D Problem |
| コンテスト | |
| ユーザー |
👑 Nachia
|
| 提出日時 | 2020-09-28 14:11:15 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 235 bytes |
| 記録 | |
| コンパイル時間 | 984 ms |
| コンパイル使用メモリ | 178,392 KB |
| 実行使用メモリ | 7,840 KB |
| 最終ジャッジ日時 | 2026-03-23 05:09:51 |
| 合計ジャッジ時間 | 1,881 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 WA * 2 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)
int main() {
int M,D; cin>>M>>D;
cout<<(M+D)<<endl;
if(M+D==2) cout<<1<<endl;
return 0;
}
Nachia