結果

問題 No.1249 小学校1年生の夢
ユーザー rainy
提出日時 2021-06-08 16:19:09
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 18:48:49
合計ジャッジ時間 1,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 17 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void){
    int A,B,C;
    scanf("%d%d%d",&A,&B,&C);
    if((A+B)==C){
        printf("Correct");
    }
    printf("Incorrect");
}
0