結果

問題 No.2449 square_permutation
ユーザー hoppiihoppii
提出日時 2023-09-01 17:40:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 4,065 ms
コンパイル使用メモリ 109,436 KB
実行使用メモリ 39,680 KB
最終ジャッジ日時 2024-06-11 02:37:27
合計ジャッジ時間 7,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,680 KB
testcase_01 AC 25 ms
23,856 KB
testcase_02 AC 26 ms
24,236 KB
testcase_03 AC 27 ms
25,720 KB
testcase_04 AC 25 ms
23,600 KB
testcase_05 AC 28 ms
25,684 KB
testcase_06 AC 52 ms
30,344 KB
testcase_07 AC 57 ms
30,640 KB
testcase_08 AC 63 ms
31,332 KB
testcase_09 AC 68 ms
33,960 KB
testcase_10 AC 81 ms
31,504 KB
testcase_11 AC 88 ms
38,464 KB
testcase_12 AC 91 ms
36,904 KB
testcase_13 AC 108 ms
37,464 KB
testcase_14 AC 108 ms
37,476 KB
testcase_15 AC 109 ms
37,248 KB
testcase_16 AC 108 ms
39,544 KB
testcase_17 AC 107 ms
37,368 KB
testcase_18 AC 100 ms
38,388 KB
testcase_19 AC 107 ms
39,088 KB
testcase_20 AC 106 ms
39,420 KB
testcase_21 AC 107 ms
39,680 KB
testcase_22 AC 27 ms
23,552 KB
testcase_23 AC 107 ms
39,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
public class Hello{
    public static void Main(){
        // Your code here!
        int n = int.Parse(System.Console.ReadLine());
        int[] ans = new int[n+1];
        for(int i=0;i<n+1;i++) ans[i] = 0;
        for(int i=1;i<n+1;i++){
            
            if(ans[i] != 0) continue;
            List<int> tmp = new List<int>();
            for(int j=1;i*j*j<=n;j++){
                tmp.Add(i*j*j);
            }
            for(int j=0;j<tmp.Count;j++){
                ans[tmp[j]] = tmp[tmp.Count-1-j];
            }
        }
        int[] anss = new int[n];
        for(int i=0;i<n;i++){
            anss[i] = ans[i+1];
        }
        System.Console.WriteLine(string.Join(" ",anss));
    }
}
0