結果

問題 No.311 z in FizzBuzzString
ユーザー kuroi_13kuroi_13
提出日時 2017-03-29 09:53:38
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 77 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 6,072 KB
実行使用メモリ 6,076 KB
最終ジャッジ日時 2023-10-25 02:49:46
合計ジャッジ時間 762 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,072 KB
testcase_01 AC 7 ms
6,072 KB
testcase_02 AC 6 ms
6,076 KB
testcase_03 AC 6 ms
6,076 KB
testcase_04 AC 7 ms
6,076 KB
testcase_05 AC 6 ms
6,076 KB
testcase_06 AC 6 ms
6,076 KB
testcase_07 AC 7 ms
6,076 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my $ans = <>;
print 2*(int($ans/3) + int($ans/5));
0