結果

問題 No.1423 Triangle of Multiples
ユーザー tailstails
提出日時 2021-03-12 21:25:26
言語 Perl
(5.38.2)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-04-22 12:06:19
合計ジャッジ時間 1,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 258 ms
10,240 KB
testcase_03 AC 167 ms
10,368 KB
testcase_04 AC 186 ms
10,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
for(<>){
	($a,$b,$c)=glob;
	print int(1e9/$a)*$a,$",int(1e9/$b)*$b,$",int(1e9/$c)*$c,$/;
}
0