結果
問題 | No.143 豆 |
ユーザー | wooltea |
提出日時 | 2017-04-29 18:09:52 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 337 ms |
コンパイル使用メモリ | 28,928 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 22:58:41 |
合計ジャッジ時間 | 2,961 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 1 ms
6,948 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
#include <stdio.h> int main(void) { int K, N, F,i; int A[101]; scanf("%d%d%d", &K, &N, &F); N *= K; K = 0; for (i = 1; i <= N; i++) { K += A[i - 1]; } if (N > K) { printf("%d", N); } else { printf("%d", -1); } }