結果

問題 No.1249 小学校1年生の夢
ユーザー トミー
提出日時 2024-10-19 14:03:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 165,908 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-19 14:03:35
合計ジャッジ時間 2,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll;
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define drep(i,n) for(ll i=n-1;i>=(ll)0;i--)

void solve() {
    ll a,b,c;
    cin>>a>>b>>c;
    cout<<((a+b==c) ? "Corenct" : "Incorrenct") <<endl;
}

int main() {
    solve();
    system("pause");
}
0