結果

問題 No.311 z in FizzBuzzString
ユーザー togaerrortogaerror
提出日時 2016-10-19 22:51:38
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 365 ms / 1,500 ms
コード長 111 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 135,208 KB
実行使用メモリ 147,160 KB
最終ジャッジ日時 2024-09-24 21:50:12
合計ジャッジ時間 7,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
146,972 KB
testcase_01 AC 362 ms
146,524 KB
testcase_02 AC 358 ms
146,524 KB
testcase_03 AC 362 ms
146,576 KB
testcase_04 AC 365 ms
146,908 KB
testcase_05 AC 364 ms
146,908 KB
testcase_06 AC 362 ms
146,576 KB
testcase_07 AC 358 ms
146,524 KB
testcase_08 AC 362 ms
146,900 KB
testcase_09 AC 360 ms
147,160 KB
testcase_10 AC 361 ms
146,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;
my $n = get().chomp;
my $ans3 = ($n / 5).Int;
my $ans5 = ($n / 3).Int;

say ($ans3 + $ans5) * 2;

exit;
0