結果
問題 | No.369 足し間違い |
ユーザー | chacoder1 |
提出日時 | 2020-12-06 23:42:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 243 bytes |
コンパイル時間 | 1,624 ms |
コンパイル使用メモリ | 192,032 KB |
最終ジャッジ日時 | 2025-01-16 18:43:54 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin>>N; long long A[N]; long long ans=0; for(int i=0;i<N;i++){ cin>>A[i]; ans+=A[i]; } long long v; cin>>v; cout<<ans-v<<endl; return 0; }