結果
| 問題 |
No.175 simpleDNA
|
| コンテスト | |
| ユーザー |
chacoder1
|
| 提出日時 | 2021-03-02 18:42:30 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 1,000 ms |
| コード長 | 205 bytes |
| コンパイル時間 | 2,433 ms |
| コンパイル使用メモリ | 191,156 KB |
| 最終ジャッジ日時 | 2025-01-19 09:26:22 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<n;i++)
int main(){
int l,n;
cin>>l>>n;
cout<<setprecision(12)<<pow(8,l/3-1)*n<<endl;
return 0;
}
chacoder1