結果

問題 No.2175 Exciting Combo
ユーザー ALEEM SIDDIQUI 5-Yr IDD Electrical Engg, 2018-2023
提出日時 2023-01-06 22:26:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 190,664 KB
最終ジャッジ日時 2025-02-10 00:06:27
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 4 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

// Online C++ compiler to run C++ program online
#include <bits/stdc++.h>
#define ll long long
#define REP(i, n) for(auto i=0;i<n;i++)
#define pb push_back
using namespace std;

void solve()
{
  int a, b, c, n;
  cin>>a>>b>>c>>n;
  cout<<a+b+c+n<<"\n";
    
}
int main() {
    // Write C++ code here
    // std::cout << "Hello world!";

    // int T;
    // cin>>T;
    // while(T-->0)
    solve();
    return 0;
}
0