結果

問題 No.1686 Geschenkt
ユーザー Subaru314Subaru314
提出日時 2022-01-05 17:46:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 2,955 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 46,736 KB
最終ジャッジ日時 2024-04-23 21:49:54
合計ジャッジ時間 5,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
46,704 KB
testcase_01 AC 133 ms
46,204 KB
testcase_02 AC 135 ms
46,348 KB
testcase_03 AC 132 ms
46,324 KB
testcase_04 AC 130 ms
46,428 KB
testcase_05 AC 139 ms
46,536 KB
testcase_06 AC 134 ms
46,640 KB
testcase_07 AC 137 ms
46,572 KB
testcase_08 AC 138 ms
46,352 KB
testcase_09 AC 136 ms
46,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  
  public static void main(String[] args){
    
    Scanner sc = new Scanner(System.in);
    
    int n = sc.nextInt();
    int[] nums = new int[n];
    
    for(int i=0; i<n; i++){
      nums[i] = sc.nextInt();
    }
    
    int ans = 0;
    
    for(int i : nums){
      boolean flag = true;
      for(int j=0; j<n; j++){
        if(i-1==nums[j]){
          flag = false;
          break;
        }
      }
      if(flag){
        ans += i;
      }
      
    }
    
    System.out.println(ans);
  
  }

}
0