結果

問題 No.175 simpleDNA
ユーザー togaerrortogaerror
提出日時 2015-04-04 17:02:21
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 201 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 01:58:10
合計ジャッジ時間 616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,760 KB
testcase_01 WA -
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 5 ms
5,632 KB
testcase_04 WA -
testcase_05 AC 6 ms
5,760 KB
testcase_06 AC 5 ms
5,760 KB
testcase_07 AC 5 ms
5,760 KB
testcase_08 AC 5 ms
5,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;

my $l = <>;
my $n = <>;
my $str = <>;
my $ans;

if($l == 3) {
	print "$n\n";
} else {
	$ans = $l - 3;
	$ans = 2**$ans;
	$ans *= $n;
	print "$ans\n";
}

exit;
0