結果

問題 No.207 世界のなんとか
ユーザー nukosukenukosuke
提出日時 2016-10-18 02:34:27
言語 Raku
(rakudo v2024.02)
結果
RE  
実行時間 -
コード長 145 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 136,708 KB
実行使用メモリ 139,412 KB
最終ジャッジ日時 2024-05-03 13:20:06
合計ジャッジ時間 10,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 411 ms
139,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;
my ($A, $B) = get().split(' ');
my $ans = '';
for $A..$B {
	$ans += $_ + '\n' if ($_ % 3 == 0) || Str($_).index('3').defined;
}
say $ans;
0