結果

問題 No.1249 小学校1年生の夢
ユーザー ytft
提出日時 2021-05-14 23:58:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 3,016 ms
コンパイル使用メモリ 335,672 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 06:32:57
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 17 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <boost/multiprecision/cpp_int.hpp>
typedef boost::multiprecision::cpp_int mp;

int main(){
    int a,b,c;
    cin>>a>>b>>c;
    cout<<(a+b==c?"c":"Inc")<<"orrect"<<endl;
}
0