結果
問題 | No.2216 Pa1indr0me |
ユーザー | kakel-san |
提出日時 | 2023-08-26 19:38:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 565 bytes |
コンパイル時間 | 1,947 ms |
コンパイル使用メモリ | 104,960 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-06-07 15:11:18 |
合計ジャッジ時間 | 1,464 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
17,792 KB |
testcase_01 | AC | 21 ms
17,920 KB |
testcase_02 | AC | 21 ms
17,792 KB |
testcase_03 | AC | 21 ms
17,792 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new long[t]; for (var u = 0; u < t; ++u) { var n = NN; ans[u] = (long)n * (n + 1); } WriteLine(string.Join("\n", ans)); } }