結果

問題 No.1727 [Cherry 3rd Tune] Stray
ユーザー umezoumezo
提出日時 2021-10-29 23:37:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 194,316 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 16:00:13
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int t,n,c;
  cin>>t>>n>>c;
  
  vector<int> A={16,43,120,382,1236,4243,14828,52945};
  cout<<A[n-3]<<endl;

  return 0;
}
0