結果
問題 |
No.1656 Recuperation
|
ユーザー |
|
提出日時 | 2024-01-09 21:06:07 |
言語 | C# (.NET 8.0.404) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 742 bytes |
コンパイル時間 | 15,241 ms |
コンパイル使用メモリ | 169,544 KB |
実行使用メモリ | 187,208 KB |
最終ジャッジ日時 | 2024-09-27 20:02:52 |
合計ジャッジ時間 | 9,120 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 3 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (91 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
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(); static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray(); static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new int[t]; for (var u = 0; u < t; ++u) { var c = NList; ans[u] = c[1] + c[0] * c[1]; } WriteLine(string.Join("\n", ans)); } }