結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー さかぽんさかぽん
提出日時 2021-01-18 10:15:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 102,208 KB
実行使用メモリ 23,752 KB
最終ジャッジ日時 2023-08-20 17:51:30
合計ジャッジ時間 8,297 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,672 KB
testcase_01 AC 61 ms
21,588 KB
testcase_02 AC 60 ms
21,716 KB
testcase_03 AC 60 ms
21,660 KB
testcase_04 AC 60 ms
21,628 KB
testcase_05 AC 61 ms
23,632 KB
testcase_06 AC 60 ms
21,664 KB
testcase_07 AC 60 ms
19,700 KB
testcase_08 AC 60 ms
19,632 KB
testcase_09 AC 62 ms
19,608 KB
testcase_10 AC 60 ms
23,680 KB
testcase_11 AC 61 ms
23,568 KB
testcase_12 AC 61 ms
21,692 KB
testcase_13 AC 61 ms
21,684 KB
testcase_14 AC 61 ms
21,628 KB
testcase_15 AC 61 ms
21,708 KB
testcase_16 AC 60 ms
23,736 KB
testcase_17 AC 60 ms
21,568 KB
testcase_18 AC 60 ms
23,664 KB
testcase_19 AC 60 ms
23,672 KB
testcase_20 AC 60 ms
21,512 KB
testcase_21 AC 60 ms
21,524 KB
testcase_22 AC 60 ms
23,632 KB
testcase_23 AC 60 ms
21,664 KB
testcase_24 AC 60 ms
19,572 KB
testcase_25 AC 61 ms
21,620 KB
testcase_26 AC 60 ms
21,588 KB
testcase_27 AC 60 ms
21,612 KB
testcase_28 AC 60 ms
21,600 KB
testcase_29 AC 60 ms
21,652 KB
testcase_30 AC 62 ms
21,620 KB
testcase_31 AC 62 ms
21,668 KB
testcase_32 AC 67 ms
23,644 KB
testcase_33 AC 60 ms
21,600 KB
testcase_34 AC 62 ms
19,600 KB
testcase_35 AC 60 ms
21,708 KB
testcase_36 AC 60 ms
21,724 KB
testcase_37 AC 61 ms
21,632 KB
testcase_38 AC 59 ms
21,604 KB
testcase_39 AC 60 ms
21,644 KB
testcase_40 AC 60 ms
21,652 KB
testcase_41 AC 61 ms
23,752 KB
testcase_42 AC 60 ms
21,648 KB
testcase_43 AC 60 ms
21,504 KB
testcase_44 AC 60 ms
23,648 KB
testcase_45 AC 60 ms
23,696 KB
testcase_46 AC 59 ms
19,600 KB
testcase_47 AC 59 ms
21,576 KB
testcase_48 AC 60 ms
23,572 KB
testcase_49 AC 60 ms
19,652 KB
testcase_50 AC 61 ms
21,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class B
{
	static void Main() => Console.WriteLine(string.Join(" ", Enumerable.Range(0, int.Parse(Console.ReadLine())).Select(i => 1L << i)));
}
0