結果

問題 No.3088 ACL list
ユーザー akasinnakasinn
提出日時 2022-04-01 21:43:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 1,613 ms
実行使用メモリ 3,424 KB
スコア 24
最終ジャッジ日時 2022-04-01 21:43:26
合計ジャッジ時間 2,060 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
3,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*yukicoder April Fool Contest 2022 A*/
#include<bits/stdc++.h>
using namespace std;
int main(){
  cout<<"LICENSE\nall\n";
  vector<string>v={
"convolution",
"dsu",
"fenwicktree",
"internal_bit",
"internal_csr",
"internal_math",
"internal_queue",
"internal_scc",
"internal_type_traits",
"lazysegtree",
"math",
"maxflow",
"mincostflow",
"modint",
"scc",
"segtree",
"string",
"twosat"};
  for(string s:v)
    cout<<s+"\n"+s+".hpp\n";
  }
0