結果
問題 | No.143 豆 |
ユーザー | 0w1 |
提出日時 | 2016-11-19 23:51:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 286 bytes |
コンパイル時間 | 1,688 ms |
コンパイル使用メモリ | 167,048 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 10:23:23 |
合計ジャッジ時間 | 1,865 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
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; | ^
ソースコード
#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 ]; if( cnt < 0 ) cnt = -1; cout << cnt << endl; return 0; }