結果

問題 No.477 MVP
ユーザー tailstails
提出日時 2017-01-27 22:26:04
言語 Perl
(5.38.2)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 50 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 11,276 KB
実行使用メモリ 11,376 KB
最終ジャッジ日時 2023-08-25 03:54:50
合計ジャッジ時間 1,599 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
11,340 KB
testcase_01 AC 39 ms
11,188 KB
testcase_02 AC 41 ms
11,192 KB
testcase_03 AC 39 ms
11,272 KB
testcase_04 AC 40 ms
11,092 KB
testcase_05 AC 39 ms
11,092 KB
testcase_06 AC 40 ms
11,096 KB
testcase_07 AC 40 ms
11,160 KB
testcase_08 AC 39 ms
11,376 KB
testcase_09 AC 39 ms
11,192 KB
testcase_10 AC 40 ms
11,148 KB
testcase_11 AC 39 ms
11,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use bigint;
($n,$k)=<>=~/\d+/g;
print $n/($k+1)+1
0