結果
問題 | No.379 五円硬貨 |
ユーザー | sam_kino |
提出日時 | 2016-07-25 05:57:15 |
言語 | Perl (5.38.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 756 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-11-06 16:16:30 |
合計ジャッジ時間 | 1,907 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
コンパイルメッセージ
Useless use of division (/) in void context at Main.pl line 14. Scalar value @lines[0] better written as $lines[0] at Main.pl line 14. Scalar value @lines[1] better written as $lines[1] at Main.pl line 14. Scalar value @lines[3] better written as $lines[3] at Main.pl line 14. Main.pl syntax OK
ソースコード
# use strict; use warnings; use utf8; use Encode; my $line=<STDIN>; #標準入力 chom($line); #----- 空白で分割 my @lines=split(/ /,$line); #----- perl 文字列・数値 明確に区別しない 自動変換 print (@lines[0]*@lines[1])/@lines[3];