結果
問題 | No.1249 小学校1年生の夢 |
ユーザー | xRS43BofaUEZ5gc |
提出日時 | 2021-03-03 09:01:47 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 319 bytes |
コンパイル時間 | 3,264 ms |
コンパイル使用メモリ | 74,440 KB |
実行使用メモリ | 54,256 KB |
最終ジャッジ日時 | 2024-10-03 03:07:37 |
合計ジャッジ時間 | 8,913 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
import java.util.Scanner; public class HelloWorld { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); System.out.println(a + b == c ? "Correct":"Incorrect"); } }