結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー kotatsugamekotatsugame
提出日時 2021-02-01 19:34:41
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 41 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 119,896 KB
実行使用メモリ 131,928 KB
最終ジャッジ日時 2023-09-12 10:39:12
合計ジャッジ時間 13,924 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
131,684 KB
testcase_01 AC 333 ms
131,648 KB
testcase_02 AC 331 ms
131,632 KB
testcase_03 AC 335 ms
131,628 KB
testcase_04 AC 332 ms
131,436 KB
testcase_05 AC 337 ms
131,700 KB
testcase_06 AC 333 ms
131,700 KB
testcase_07 AC 340 ms
131,632 KB
testcase_08 AC 339 ms
131,688 KB
testcase_09 AC 333 ms
131,404 KB
testcase_10 AC 337 ms
131,612 KB
testcase_11 AC 333 ms
131,612 KB
testcase_12 AC 333 ms
131,632 KB
testcase_13 AC 331 ms
131,636 KB
testcase_14 AC 332 ms
131,688 KB
testcase_15 AC 331 ms
131,632 KB
testcase_16 AC 331 ms
131,860 KB
testcase_17 AC 334 ms
131,680 KB
testcase_18 AC 330 ms
131,660 KB
testcase_19 AC 329 ms
131,640 KB
testcase_20 AC 330 ms
131,684 KB
testcase_21 AC 336 ms
131,928 KB
testcase_22 AC 331 ms
131,648 KB
testcase_23 AC 332 ms
131,908 KB
testcase_24 AC 335 ms
131,640 KB
testcase_25 AC 332 ms
131,928 KB
testcase_26 AC 332 ms
131,436 KB
testcase_27 AC 335 ms
131,860 KB
testcase_28 AC 335 ms
131,644 KB
testcase_29 AC 339 ms
131,840 KB
testcase_30 AC 333 ms
131,556 KB
testcase_31 AC 338 ms
131,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

say words>>.&{($_%%3+$_%%5)*4||.comb}.sum
0