結果
問題 | No.175 simpleDNA |
ユーザー |
|
提出日時 | 2016-08-31 15:28:49 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 115,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 04:00:41 |
合計ジャッジ時間 | 1,119 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
import std.algorithm, std.array, std.container, std.range;import std.numeric, std.math, std.bigint, std.bitmanip, std.random;import std.string, std.conv, std.stdio, std.typecons;void main(){auto l = readln.chomp.to!int;auto n = readln.chomp.to!int;auto si = readln.split;writeln(2 ^^ (l - 3) * n);}