結果

問題 No.344 ある無理数の累乗
ユーザー takashi2001pctakashi2001pc
提出日時 2016-02-13 02:13:50
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 160 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 17,084 KB
実行使用メモリ 21,860 KB
最終ジャッジ日時 2023-10-22 04:49:50
合計ジャッジ時間 13,393 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
17,100 KB
testcase_01 AC 283 ms
17,108 KB
testcase_02 AC 300 ms
17,140 KB
testcase_03 AC 312 ms
17,204 KB
testcase_04 AC 332 ms
17,280 KB
testcase_05 AC 359 ms
17,348 KB
testcase_06 AC 377 ms
17,408 KB
testcase_07 AC 431 ms
17,464 KB
testcase_08 AC 449 ms
17,552 KB
testcase_09 AC 510 ms
17,604 KB
testcase_10 AC 573 ms
17,676 KB
testcase_11 AC 642 ms
17,736 KB
testcase_12 AC 679 ms
17,840 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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


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