結果

問題 No.8088 ACL list
コンテスト
ユーザー okkuu
提出日時 2026-07-21 14:36:57
言語 C++23
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 422µs
コード長 1,382 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 6,525 ms
コンパイル使用メモリ 418,012 KB
実行使用メモリ 5,888 KB
スコア 0
最終ジャッジ日時 2026-07-21 14:37:06
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

//*
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
//*/
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using P=pair<int,int>;
using Pl=pair<ll,ll>;
constexpr int mod=998244353;
constexpr int Mod=1e9+7;
constexpr int inf=Mod;
constexpr ll linf=(ll)inf*inf;
constexpr int dx[]={1,0,0,-1},dy[]={0,1,-1,0};
constexpr int Dx[]={1,1,1,0,0,-1,-1,-1},Dy[]={1,0,-1,1,-1,1,0,-1};
struct initio{
	initio(){
		cin.tie(0)->sync_with_stdio(0);
		cout<<fixed<<setprecision(20);
	};
}iio;
template<class T>
bool chmax(T&a,const T&b){
	if(a<b){
		a=b;
		return 1;
	}
	return 0;
}
template<class T>
bool chmin(T&a,const T&b){
	if(a>b){
		a=b;
		return 1;
	}
	return 0;
}
//*
#include<atcoder/all>
using namespace atcoder;
using mint=modint998244353;
using Mint=modint1000000007;
//*/
int main(){
	cout<<"LICENSE\nall\nconvolution\nconvolution.hpp\ndsu\ndsu.hpp\nfenwicktree\nfenwicktree.hpp\ninternal_bit\ninternal_bit.hpp\ninternal_csr\ninternal_csr.hpp\ninternal_math\ninternal_math.hpp\ninternal_queue\ninternal_queue.hpp\ninternal_scc\ninternal_scc.hpp\ninternal_type_traits\ninternal_type_traits.hpp\nlazysegtree\nlazysegtree.hpp\nmath\nmath.hpp\nmaxflow\nmaxflow.hpp\nmincostflow\nmincostflow.hpp\nmodint\nmodint.hpp\nscc\nscc.hpp\nsegtree\nsegtree.hpp\nstring\nstring.hpp\ntwosat\ntwosat.hpp"<<endl;
}
0