結果

問題 No.682 Average
ユーザー kuroi_13kuroi_13
提出日時 2018-05-14 15:07:20
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 5,196 KB
最終ジャッジ日時 2023-09-10 20:36:55
合計ジャッジ時間 1,133 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,020 KB
testcase_01 WA -
testcase_02 AC 5 ms
5,040 KB
testcase_03 AC 4 ms
4,996 KB
testcase_04 AC 5 ms
5,064 KB
testcase_05 AC 5 ms
4,996 KB
testcase_06 AC 4 ms
4,844 KB
testcase_07 AC 5 ms
4,908 KB
testcase_08 AC 4 ms
5,096 KB
testcase_09 AC 5 ms
4,960 KB
testcase_10 AC 4 ms
5,116 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

<> =~ / /;
my $count;
for($`..$'){
  ++$count if(!(($`+$_+$')%3));
}
print $count;
0