結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー yuruhiyayuruhiya
提出日時 2020-10-17 19:06:45
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 338 ms / 1,000 ms
コード長 43 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 122,436 KB
実行使用メモリ 131,840 KB
最終ジャッジ日時 2023-09-28 08:31:13
合計ジャッジ時間 12,928 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
131,568 KB
testcase_01 AC 336 ms
131,436 KB
testcase_02 AC 329 ms
131,500 KB
testcase_03 AC 333 ms
131,652 KB
testcase_04 AC 333 ms
131,836 KB
testcase_05 AC 335 ms
131,644 KB
testcase_06 AC 333 ms
131,656 KB
testcase_07 AC 333 ms
131,648 KB
testcase_08 AC 334 ms
131,588 KB
testcase_09 AC 336 ms
131,704 KB
testcase_10 AC 331 ms
131,536 KB
testcase_11 AC 333 ms
131,592 KB
testcase_12 AC 333 ms
131,592 KB
testcase_13 AC 335 ms
131,640 KB
testcase_14 AC 332 ms
131,528 KB
testcase_15 AC 334 ms
131,548 KB
testcase_16 AC 333 ms
131,576 KB
testcase_17 AC 337 ms
131,528 KB
testcase_18 AC 335 ms
131,648 KB
testcase_19 AC 332 ms
131,840 KB
testcase_20 AC 332 ms
131,496 KB
testcase_21 AC 332 ms
131,820 KB
testcase_22 AC 331 ms
131,708 KB
testcase_23 AC 336 ms
131,532 KB
testcase_24 AC 336 ms
131,576 KB
testcase_25 AC 335 ms
131,568 KB
testcase_26 AC 328 ms
131,600 KB
testcase_27 AC 330 ms
131,636 KB
testcase_28 AC 331 ms
131,524 KB
testcase_29 AC 331 ms
131,500 KB
testcase_30 AC 328 ms
131,640 KB
testcase_31 AC 335 ms
131,644 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

say sum map {($_%%3+$_%%5)*4||.chars},words
0