結果

問題 No.1727 [Cherry 3rd Tune] Stray
ユーザー ecottea
提出日時 2021-10-30 15:35:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 6,000 ms
コード長 217 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 68,540 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 13:43:31
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main() {
	vector<int> ans = { -1, -1, -1, 16, 43, 120, 382, 1236, 4243, 14828, 52996 };

	int t, n, c;
	cin >> t >> n >> c;

	cout << ans[n] << endl;
}
0