結果
問題 | No.1249 小学校1年生の夢 |
ユーザー | suppy193 |
提出日時 | 2021-01-10 19:57:39 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 185 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 27,264 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 08:20:41 |
合計ジャッジ時間 | 1,298 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <stdio.h> int main(void) { int a, b, c; scanf("%d%d%d", &a, &b, &c); if(a + b == c){ printf("Correct"); } else { printf("Incorrect"); } printf("\n"); return 0; }