結果
問題 | No.126 2基のエレベータ |
ユーザー | togaerror |
提出日時 | 2015-03-25 22:56:32 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 28 ms |
コンパイル使用メモリ | 5,760 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-06-29 00:57:56 |
合計ジャッジ時間 | 1,034 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 6 ms
5,504 KB |
testcase_04 | AC | 6 ms
5,504 KB |
testcase_05 | AC | 6 ms
5,632 KB |
testcase_06 | AC | 7 ms
5,504 KB |
testcase_07 | WA | - |
testcase_08 | AC | 6 ms
5,504 KB |
testcase_09 | WA | - |
testcase_10 | AC | 6 ms
5,504 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 6 ms
5,632 KB |
testcase_18 | WA | - |
testcase_19 | AC | 6 ms
5,632 KB |
testcase_20 | WA | - |
testcase_21 | AC | 6 ms
5,632 KB |
testcase_22 | WA | - |
testcase_23 | AC | 6 ms
5,632 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
#!/usr/bin/perl use warnings; use strict; my ($a, $b, $s) = split / /, <>; my $x = $a - $s; my $y = $b - $s; my $count = 0; if($x < 0) { $x *= -1; } if($y < 0) { $y *= -1; } if($a <= $b) { $count = $x + $s; } else { $count = $y; $y = $a - $b; if($y < 0) { $y *= -1; } if($a < $y) { $count += $a; } else { $count += $y + $a; } } print "$count\n"; exit;