結果

問題 No.322 Geometry Dash
ユーザー nebukuro09nebukuro09
提出日時 2017-04-14 13:11:17
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 123,948 KB
実行使用メモリ 12,556 KB
最終ジャッジ日時 2024-06-12 18:43:50
合計ジャッジ時間 6,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 43 ms
10,128 KB
testcase_05 AC 46 ms
8,640 KB
testcase_06 AC 52 ms
9,812 KB
testcase_07 AC 62 ms
8,776 KB
testcase_08 AC 68 ms
9,484 KB
testcase_09 AC 45 ms
9,420 KB
testcase_10 AC 49 ms
8,552 KB
testcase_11 AC 59 ms
10,452 KB
testcase_12 AC 66 ms
8,740 KB
testcase_13 AC 72 ms
9,912 KB
testcase_14 AC 53 ms
8,680 KB
testcase_15 AC 58 ms
10,612 KB
testcase_16 AC 68 ms
8,860 KB
testcase_17 AC 75 ms
10,556 KB
testcase_18 AC 78 ms
12,556 KB
testcase_19 AC 62 ms
8,776 KB
testcase_20 AC 66 ms
8,688 KB
testcase_21 AC 75 ms
9,868 KB
testcase_22 AC 80 ms
11,172 KB
testcase_23 AC 83 ms
11,224 KB
testcase_24 AC 68 ms
9,684 KB
testcase_25 AC 71 ms
8,892 KB
testcase_26 AC 77 ms
11,128 KB
testcase_27 AC 81 ms
12,200 KB
testcase_28 AC 85 ms
11,788 KB
testcase_29 AC 68 ms
9,532 KB
testcase_30 AC 75 ms
10,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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.string;

void main() {
    auto N = readln.chomp.to!int;
    auto T = readln.split.map!(to!int).array;
    auto D = readln.split.map!(to!int).array;
    auto A = N.iota.array;
    A.sort!((a, b) => T[b]*D[a] < T[a]*D[b])();
    A.map!(a => (a+1).to!string).join(" ").writeln;
}
0