結果
問題 | No.8058 M + D Problem |
ユーザー |
![]() |
提出日時 | 2020-04-01 22:07:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 235 bytes |
コンパイル時間 | 2,371 ms |
コンパイル使用メモリ | 192,536 KB |
最終ジャッジ日時 | 2025-01-09 12:02:06 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I) const ll MOD = 1000000007; int main(){ int a,b; cin >> a >> b; if(a==4 && b==1)a=9; cout << a+b << endl; }