結果

問題 No.610 区間賞(Section Award)
ユーザー ikdikd
提出日時 2017-12-10 00:24:36
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 147,708 KB
実行使用メモリ 12,380 KB
最終ジャッジ日時 2024-06-12 22:57:57
合計ジャッジ時間 4,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 46 ms
11,280 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 31 ms
9,476 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 3 ms
6,948 KB
testcase_26 AC 21 ms
9,536 KB
testcase_27 AC 47 ms
11,892 KB
testcase_28 AC 41 ms
11,368 KB
testcase_29 AC 29 ms
11,208 KB
testcase_30 AC 38 ms
11,300 KB
testcase_31 AC 20 ms
9,200 KB
testcase_32 AC 43 ms
10,900 KB
testcase_33 AC 7 ms
6,940 KB
testcase_34 AC 46 ms
12,380 KB
testcase_35 AC 19 ms
8,444 KB
testcase_36 AC 43 ms
12,356 KB
testcase_37 AC 35 ms
10,348 KB
testcase_38 AC 11 ms
6,940 KB
testcase_39 AC 44 ms
11,492 KB
testcase_40 AC 44 ms
11,920 KB
testcase_41 AC 46 ms
11,256 KB
testcase_42 AC 46 ms
12,280 KB
testcase_43 AC 48 ms
11,532 KB
testcase_44 AC 70 ms
12,168 KB
testcase_45 AC 86 ms
11,348 KB
testcase_46 AC 85 ms
11,116 KB
testcase_47 AC 40 ms
11,112 KB
testcase_48 AC 37 ms
10,324 KB
testcase_49 AC 40 ms
12,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;

  int n; rd(n);
  auto a=readln.split.to!(int[]);
  auto b=readln.split.to!(int[]);

  bool[int] vis;
  int i=0; int[] c;
  for(int j=0; j<n; j++){
    if(b[j] in vis) continue;
    while(i<n && a[i]!=b[j]) vis[a[i]]=true, i++;
    c~=b[j];
  }

  sort(c);
  writefln("%(%s\n%)", c);
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
void wr(T...)(T x){
  import std.stdio;
  foreach(e; x) stderr.write(e, " ");
  stderr.writeln;
}
0