結果

問題 No.1249 小学校1年生の夢
ユーザー GafoGafoGafoGafo
提出日時 2021-02-24 19:45:23
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 1,455 ms
コンパイル使用メモリ 26,624 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 20:05:16
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int a,b,c;

	scanf("%d %d %d", &a, &b, &c);

	if(c == (a+b))
	{
		printf("Correct\n");
	}
	else
	{
		printf("Incorrect\n");
	}

	return 0;
}
0