結果

問題 No.610 区間賞(Section Award)
ユーザー ikdikd
提出日時 2017-12-11 00:28:14
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 146,820 KB
実行使用メモリ 7,528 KB
最終ジャッジ日時 2024-06-12 22:58:01
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 27 ms
6,944 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 13 ms
6,944 KB
testcase_27 AC 27 ms
6,940 KB
testcase_28 AC 25 ms
6,944 KB
testcase_29 AC 17 ms
6,940 KB
testcase_30 AC 22 ms
6,944 KB
testcase_31 AC 12 ms
6,944 KB
testcase_32 AC 24 ms
6,944 KB
testcase_33 AC 5 ms
6,944 KB
testcase_34 AC 27 ms
6,940 KB
testcase_35 AC 13 ms
6,940 KB
testcase_36 AC 25 ms
6,944 KB
testcase_37 AC 21 ms
6,944 KB
testcase_38 AC 7 ms
6,944 KB
testcase_39 AC 28 ms
6,944 KB
testcase_40 AC 27 ms
6,992 KB
testcase_41 AC 27 ms
6,940 KB
testcase_42 AC 28 ms
6,940 KB
testcase_43 AC 28 ms
6,944 KB
testcase_44 AC 57 ms
7,528 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 21 ms
7,336 KB
testcase_48 AC 21 ms
6,944 KB
testcase_49 AC 23 ms
7,068 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[]);

  auto vis=new bool[](n);
  int i=0; int[] c;
  for(int j=0; j<n; j++){
    if(vis[b[j]]) 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