結果
問題 |
No.175 simpleDNA
|
ユーザー |
|
提出日時 | 2020-07-01 22:45:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 112 bytes |
コンパイル時間 | 1,614 ms |
コンパイル使用メモリ | 165,892 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 05:36:55 |
合計ジャッジ時間 | 1,997 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 2 WA * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int l,n; cin>>l>>n; cout<<pow(8,l/3)*n/8<<endl; }