結果

問題 No.388 階段 (1)
ユーザー nukosuke
提出日時 2016-10-15 01:20:47
言語 Perl
(5.40.0)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-22 10:03:23
合計ジャッジ時間 1,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 12
権限があれば一括ダウンロードができます
コンパイルメッセージ
print (...) interpreted as function at Main.pl line 7.
Useless use of addition (+) in void context at Main.pl line 7.
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

$line = <>;
chomp $line;
($S, $F) = split /\s/, $line;

print ($S / $F) + 1;
0