結果

問題 No.146 試験監督(1)
ユーザー togaerrortogaerror
提出日時 2015-03-25 18:56:50
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 271 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 11,096 KB
実行使用メモリ 20,404 KB
最終ジャッジ日時 2023-09-11 10:14:44
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;
use bigint;

my $n = <>;
my $total = 0;

for(my $i = 0; $i < $n; $i++) {
	my ($c, $d) = split / /, <>;
	my $num = int(($c +1) / 2) * $d;
	$num %= (10**9 + 7);
	$total += $num;
	$total %= (10**9 + 7);
}

print "$total\n";

exit;
0