結果

問題 No.369 足し間違い
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 17:09:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 3,490 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 47,012 KB
最終ジャッジ日時 2024-11-08 01:35:10
合計ジャッジ時間 5,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,200 KB
testcase_01 AC 133 ms
41,112 KB
testcase_02 AC 131 ms
41,136 KB
testcase_03 AC 124 ms
39,872 KB
testcase_04 AC 255 ms
46,216 KB
testcase_05 AC 183 ms
42,740 KB
testcase_06 AC 244 ms
45,556 KB
testcase_07 AC 265 ms
47,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{public static void main(String[] args){Scanner sc=new Scanner(System.in);int a=sc.nextInt();int buf=0;for(int i=0;i<a;i++){buf+=sc.nextInt();}System.out.println(buf-sc.nextInt());}}
0