結果

問題 No.322 Geometry Dash
ユーザー te-shte-sh
提出日時 2017-06-23 12:13:10
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 154,408 KB
実行使用メモリ 16,588 KB
最終ジャッジ日時 2024-06-12 20:28:35
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 47 ms
16,272 KB
testcase_05 AC 52 ms
14,004 KB
testcase_06 AC 57 ms
14,044 KB
testcase_07 AC 63 ms
14,260 KB
testcase_08 AC 67 ms
14,292 KB
testcase_09 AC 51 ms
13,936 KB
testcase_10 AC 54 ms
13,668 KB
testcase_11 AC 60 ms
15,120 KB
testcase_12 AC 66 ms
13,724 KB
testcase_13 AC 70 ms
14,024 KB
testcase_14 AC 56 ms
13,984 KB
testcase_15 AC 61 ms
13,864 KB
testcase_16 AC 66 ms
13,372 KB
testcase_17 AC 72 ms
14,904 KB
testcase_18 AC 75 ms
14,032 KB
testcase_19 AC 62 ms
13,712 KB
testcase_20 AC 66 ms
14,072 KB
testcase_21 AC 71 ms
13,452 KB
testcase_22 AC 77 ms
13,940 KB
testcase_23 AC 78 ms
13,888 KB
testcase_24 AC 68 ms
14,080 KB
testcase_25 AC 70 ms
14,024 KB
testcase_26 AC 75 ms
13,740 KB
testcase_27 AC 78 ms
16,588 KB
testcase_28 AC 79 ms
15,280 KB
testcase_29 AC 64 ms
11,260 KB
testcase_30 AC 70 ms
13,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto ti = readln.split.to!(int[]);
  auto di = readln.split.to!(int[]);

  auto ai = zip(ti, di).map!(a => a[1].to!real / a[0]).array;
  auto ri = iota(n).array;
  ri.sort!((a, b) => ai[a] < ai[b]);

  writeln(ri.map!"a+1".array.to!(string[]).join(" "));
}
0