結果
問題 | No.198 キャンディー・ボックス2 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-29 00:05:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 797 bytes |
コンパイル時間 | 1,989 ms |
コンパイル使用メモリ | 75,244 KB |
実行使用メモリ | 54,336 KB |
最終ジャッジ日時 | 2024-07-05 05:19:36 |
合計ジャッジ時間 | 6,843 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,236 KB |
testcase_01 | AC | 131 ms
41,040 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 131 ms
41,108 KB |
testcase_10 | AC | 131 ms
41,240 KB |
testcase_11 | AC | 131 ms
41,132 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 130 ms
41,248 KB |
testcase_15 | WA | - |
testcase_16 | AC | 131 ms
41,224 KB |
testcase_17 | WA | - |
testcase_18 | AC | 129 ms
41,356 KB |
testcase_19 | AC | 131 ms
41,376 KB |
testcase_20 | AC | 132 ms
41,380 KB |
testcase_21 | WA | - |
testcase_22 | AC | 132 ms
41,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 133 ms
41,100 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 130 ms
41,716 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); long b = koko.nextLong(); int n = koko.nextInt(); long[] c = new long[n]; long total=0; for(int i=0; i<n; i++){ c[i]=koko.nextInt(); total = total+c[i]; } total = total + b; long ave = Math.round(total/n); long move = 0; if(ave*n<=total+b){ for(int i=0; i<n; i++){ move = move + Math.abs(c[i]-ave); } System.out.println(move); }else{ for(int i=0; i<n; i++){ move = move + Math.abs(c[i]-ave+1); } System.out.println(move); } } }