結果
問題 |
No.8058 M + D Problem
|
ユーザー |
![]() |
提出日時 | 2020-04-01 22:04:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 2,076 ms |
コンパイル使用メモリ | 192,564 KB |
最終ジャッジ日時 | 2025-01-09 12:01:27 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 WA * 1 |
ソースコード
#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; cout << a+b << endl; }