結果

問題 No.175 simpleDNA
ユーザー papinianuspapinianus
提出日時 2016-07-26 12:23:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 133 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 30,460 KB
実行使用メモリ 30,852 KB
最終ジャッジ日時 2024-04-24 09:30:33
合計ジャッジ時間 1,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,504 KB
testcase_01 AC 40 ms
30,652 KB
testcase_02 AC 40 ms
30,472 KB
testcase_03 AC 40 ms
30,452 KB
testcase_04 AC 40 ms
30,720 KB
testcase_05 AC 40 ms
30,596 KB
testcase_06 AC 40 ms
30,720 KB
testcase_07 AC 40 ms
30,852 KB
testcase_08 AC 40 ms
30,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$len = trim(fgets(STDIN));
$stops = trim(fgets(STDIN));
$null = trim(fgets(STDIN));
echo pow(2, $len - 3)*$stops;
echo PHP_EOL;
0