結果

問題 No.220 世界のなんとか2
ユーザー ttkkggwwttkkggww
提出日時 2022-09-06 15:22:51
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 251 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 199,872 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 16:33:23
合計ジャッジ時間 2,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int n;

int main() {
	cin >> n;
	ll ans = 1;
	for(int i = 0;i<n;i++){
		ans *= 10;
	}
	ll tmp = 2;
	for(int i = 0;i<n*2-1;i++){
		tmp *= 3;
	}
	ans--;
	ans -= tmp;
	cout<<ans<<endl;
}
0