結果
問題 | No.146 試験監督(1) |
ユーザー | togaerror |
提出日時 | 2015-03-15 16:35:59 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 239 bytes |
コンパイル時間 | 37 ms |
コンパイル使用メモリ | 5,760 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-06-28 22:54:07 |
合計ジャッジ時間 | 1,107 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
#!/usr/bin/perl use strict; use warnings; my $n = <>; my $total = 0; for(my $i = 0; $i < $n; $i++) { my ($c, $d) = split / /, <>; my $num = int((($c +1) / 2)) * $d; $total += $num; $total %= (10**9 + 7); } print "$total\n"; exit;