結果
問題 | No.924 紲星 |
ユーザー | poi_kyopro |
提出日時 | 2019-11-08 22:53:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,387 bytes |
コンパイル時間 | 2,751 ms |
コンパイル使用メモリ | 76,792 KB |
実行使用メモリ | 58,008 KB |
最終ジャッジ日時 | 2024-09-15 02:02:26 |
合計ジャッジ時間 | 10,717 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
53,860 KB |
testcase_01 | AC | 136 ms
53,864 KB |
testcase_02 | AC | 140 ms
53,884 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.Scanner; import java.util.Arrays; public class Main { public static void main(String args[]){ Scanner stdIn = new Scanner(System.in); int n = stdIn.nextInt(); //長さ int q = stdIn.nextInt(); //クエリ数 int seisu[] = new int[n]; for(int i = 0; i < n; i++){ seisu[i] = stdIn.nextInt(); } for(int i = 0; i < q; i++){ int l = stdIn.nextInt(); int r = stdIn.nextInt(); int use[] = new int[r - l + 1]; int index = 0; for(int j = l - 1; j < r; j++){ use[index] = seisu[j]; index++; } Arrays.sort(use); int median = 0; if((r - l + 1) % 2 == 0){ median = (use[(r - l + 1) / 2] + use[(r - l + 1) / 2 - 1]) / 2; }else{ median = use[(r - l + 1) / 2]; } int min = 0; for(int j = l - 1; j < r; j++){ if(median - seisu[j] >= 0){ min += median - seisu[j]; }else{ min += seisu[j] - median; } } System.out.println(min); } } }