結果

問題 No.5010 Better Mo's Algorithm is Needed!! (Unweighted)
ユーザー NyaanNyaan
提出日時 2022-12-17 00:02:34
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 1,445 ms
実行使用メモリ 3,548 KB
スコア 58,829,610
最終ジャッジ日時 2022-12-17 00:03:12
合計ジャッジ時間 35,680 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 120
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
  int N;
  cin>>N>>N;
  for(int i=1;i<=N;i++)cout<<i<<" \n"[i==N];
}
0