結果
問題 | No.322 Geometry Dash |
ユーザー | nebukuro09 |
提出日時 | 2017-03-22 13:08:05 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 1,042 ms |
コンパイル使用メモリ | 129,344 KB |
実行使用メモリ | 14,340 KB |
最終ジャッジ日時 | 2024-06-12 18:26:29 |
合計ジャッジ時間 | 8,191 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 43 ms
12,756 KB |
testcase_05 | AC | 45 ms
12,964 KB |
testcase_06 | AC | 47 ms
12,788 KB |
testcase_07 | AC | 51 ms
12,492 KB |
testcase_08 | AC | 53 ms
12,768 KB |
testcase_09 | AC | 44 ms
12,804 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 48 ms
12,504 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 51 ms
13,016 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 54 ms
13,028 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; void main() { auto N = readln.chomp.to!int; auto T = readln.split.map!(to!long).array; auto D = readln.split.map!(to!long).array; auto acm = D.sum; auto TD = new Tuple!(long, int)[](N); foreach (i; 0..N) { TD[i] = tuple(T[i] * (acm-D[i]), i); } TD.sort!"a[0] > b[0]"(); TD.map!(a => (a[1]+1).to!string).join(" ").writeln; }