結果
| 問題 |
No.175 simpleDNA
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-05-20 23:22:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-19 00:32:21 |
| 合計ジャッジ時間 | 1,157 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 6 |
ソースコード
L=int(input ())
N=int(input())
S=input (). split ()
A=1
for i in range(L-1):
A*=8
A*=N
print (A)
rocoder