結果

問題 No.143 豆
ユーザー 0w10w1
提出日時 2016-11-19 23:50:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 167,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 10:23:13
合計ジャッジ時間 1,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:22: warning: 'F' is used uninitialized [-Wuninitialized]
    6 |   vector< int > A( F );
      |                      ^
main.cpp:5:13: note: 'F' was declared here
    5 |   int K, N, F;
      |             ^
main.cpp:9:7: warning: 'K' may be used uninitialized [-Wmaybe-uninitialized]
    9 |   int cnt = K * N;
      |       ^~~
main.cpp:5:7: note: 'K' was declared here
    5 |   int K, N, F;
      |       ^
main.cpp:9:7: warning: 'N' may be used uninitialized [-Wmaybe-uninitialized]
    9 |   int cnt = K * N;
      |       ^~~
main.cpp:5:10: note: 'N' was declared here
    5 |   int K, N, F;
      |          ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

signed main(){
  int K, N, F;
  vector< int > A( F );
  for( int i = 0; i < F; ++i )
    cin >> A[ i ];
  int cnt = K * N;
  for( int i = 0; i < F; ++i )
    cnt -= A[ i ];
  cout << cnt << endl;
  return 0;
}
0