結果
問題 | No.322 Geometry Dash |
ユーザー | nebukuro09 |
提出日時 | 2017-03-22 11:33:00 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 1,099 ms |
コンパイル使用メモリ | 129,376 KB |
実行使用メモリ | 14,212 KB |
最終ジャッジ日時 | 2024-06-12 18:26:09 |
合計ジャッジ時間 | 8,677 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 38 ms
13,636 KB |
testcase_05 | AC | 36 ms
14,212 KB |
testcase_06 | AC | 40 ms
13,020 KB |
testcase_07 | AC | 51 ms
13,064 KB |
testcase_08 | AC | 55 ms
12,840 KB |
testcase_09 | AC | 37 ms
12,484 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 42 ms
12,956 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 47 ms
13,116 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 47 ms
12,916 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 = T.sum; auto TD = new Tuple!(long, int)[](N); foreach (i; 0..N) { TD[i] = tuple(D[i] * (acm-T[i]), i); } TD.sort!"a[0] < b[0]"(); TD.map!(a => (a[1]+1).to!string).join(" ").writeln; }