結果
| 問題 | No.1249 小学校1年生の夢 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-10 00:02:10 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 205 bytes |
| 記録 | |
| コンパイル時間 | 556 ms |
| コンパイル使用メモリ | 78,336 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-14 10:38:41 |
| 合計ジャッジ時間 | 1,567 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main(){
int x,y,z;
cin >> x >> y >> z;
if(x+y==z)
cout << "Correct"<<endl;
else
cout << "Incorrect" <<endl;
return 0;
}