結果
問題 | No.1735 C# |
ユーザー | O2MT |
提出日時 | 2021-11-25 23:15:09 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 533 bytes |
コンパイル時間 | 13,723 ms |
コンパイル使用メモリ | 168,168 KB |
実行使用メモリ | 182,120 KB |
最終ジャッジ日時 | 2024-06-28 15:45:23 |
合計ジャッジ時間 | 14,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
27,776 KB |
testcase_01 | AC | 47 ms
27,896 KB |
testcase_02 | AC | 45 ms
27,776 KB |
testcase_03 | AC | 47 ms
28,016 KB |
testcase_04 | AC | 46 ms
27,648 KB |
testcase_05 | AC | 50 ms
27,648 KB |
testcase_06 | AC | 49 ms
27,888 KB |
testcase_07 | AC | 47 ms
27,776 KB |
testcase_08 | AC | 45 ms
182,120 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (98 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 System.Collections.Generic; using System.Linq; namespace Sample { class Program { static void Main(string[] args) { //var arr = Console.ReadLine().Split(' ').Select(long.Parse).ToArray(); var S = Console.ReadLine(); var arr = new List<string>() { "A", "A#","B", "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#" }; var MOD = arr.Count(); var i = (arr.IndexOf(S) + 1) % MOD; Console.WriteLine(arr[i]); } } }