結果

問題 No.1237 EXP Multiple!
ユーザー tailstails
提出日時 2020-09-25 21:35:06
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 196 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-06-28 08:31:13
合計ジャッジ時間 7,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 355 ms
31,744 KB
testcase_02 AC 488 ms
41,344 KB
testcase_03 AC 506 ms
42,240 KB
testcase_04 AC 292 ms
42,752 KB
testcase_05 AC 272 ms
41,088 KB
testcase_06 AC 272 ms
41,088 KB
testcase_07 AC 276 ms
40,960 KB
testcase_08 AC 312 ms
45,824 KB
testcase_09 AC 280 ms
40,960 KB
testcase_10 AC 272 ms
40,960 KB
testcase_11 AC 273 ms
40,960 KB
testcase_12 AC 303 ms
45,056 KB
testcase_13 AC 329 ms
45,696 KB
testcase_14 AC 326 ms
45,696 KB
testcase_15 AC 315 ms
45,696 KB
testcase_16 AC 319 ms
45,696 KB
testcase_17 AC 315 ms
45,696 KB
testcase_18 AC 315 ms
45,696 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$p=1;
<>;
for(glob<>){
	if($_==0){
		print -1;
		exit;
	}
	if($_>3){
		print 1000000007;
		exit;
	}
	$p*=(0,1,4,729)[$_];
	if($p>1000000007){
		print 1000000007;
		exit;
	}
}
print 1000000007%$p;
0