結果

問題 No.344 ある無理数の累乗
ユーザー takashi2001pctakashi2001pc
提出日時 2016-02-13 02:30:37
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 17,152 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2024-09-22 06:08:59
合計ジャッジ時間 13,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
24,096 KB
testcase_01 AC 83 ms
17,152 KB
testcase_02 AC 82 ms
17,152 KB
testcase_03 AC 83 ms
17,024 KB
testcase_04 AC 84 ms
17,152 KB
testcase_05 AC 84 ms
17,280 KB
testcase_06 AC 84 ms
17,152 KB
testcase_07 AC 84 ms
17,152 KB
testcase_08 AC 84 ms
17,024 KB
testcase_09 AC 85 ms
17,024 KB
testcase_10 AC 85 ms
17,024 KB
testcase_11 AC 84 ms
17,024 KB
testcase_12 AC 84 ms
17,152 KB
testcase_13 AC 86 ms
17,152 KB
testcase_14 AC 96 ms
17,152 KB
testcase_15 AC 114 ms
17,280 KB
testcase_16 AC 139 ms
17,280 KB
testcase_17 AC 172 ms
17,280 KB
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use utf8;
use bignum(p => -83);
use Encode qw/encode decode decode_utf8 encode_utf8 from_to/;

my $i = <STDIN>;
print int( ( (1 + sqrt(3)) ** $i ) % 1000 );
0