結果
問題 | No.1686 Geschenkt |
ユーザー | bluemegane |
提出日時 | 2021-09-24 22:08:39 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 550 bytes |
コンパイル時間 | 718 ms |
コンパイル使用メモリ | 107,772 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-07-05 10:40:12 |
合計ジャッジ時間 | 1,475 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
17,920 KB |
testcase_01 | AC | 23 ms
18,048 KB |
testcase_02 | AC | 21 ms
17,920 KB |
testcase_03 | AC | 20 ms
17,664 KB |
testcase_04 | AC | 21 ms
17,920 KB |
testcase_05 | AC | 21 ms
17,792 KB |
testcase_06 | AC | 21 ms
17,920 KB |
testcase_07 | AC | 21 ms
18,048 KB |
testcase_08 | AC | 22 ms
17,792 KB |
testcase_09 | AC | 22 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; public class Hello { static void Main() { var n = int.Parse(Console.ReadLine().Trim()); string[] line = Console.ReadLine().Trim().Split(' '); var a = Array.ConvertAll(line, int.Parse); getAns(n, a); } static void getAns(int n, int[] a) { var t = new bool[40]; for (int i = 0; i < n; i++) t[a[i]] = true; var ans = 0; for (int i = 1; i < 40; i++) { if (t[i] && !t[i - 1]) ans += i; } Console.WriteLine(ans); } }