結果

問題 No.2175 Exciting Combo
ユーザー ALEEM SIDDIQUI 5-Yr IDD Electrical Engg, 2018-2023ALEEM SIDDIQUI 5-Yr IDD Electrical Engg, 2018-2023
提出日時 2023-01-06 22:26:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 198,380 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 22:04:42
合計ジャッジ時間 2,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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