結果
| 問題 | No.1249 小学校1年生の夢 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-24 19:45:23 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 36,416 KB |
| 最終ジャッジ日時 | 2026-02-22 06:51:21 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
#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;
}