結果

問題 No.143 豆
ユーザー 👑 CleyL
提出日時 2019-09-26 23:41:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 64,396 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 06:29:53
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int a,b,c;cin>>a>>b>>c;
    int sm = 0;
    for(int i = 0; c > i; i++){
        int tmp;cin>>tmp;
        sm += tmp;
    }
    cout << a*b-sm << endl;
}
0