結果

問題 No.1735 C#
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-11-12 21:37:06
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 71,544 KB
最終ジャッジ日時 2023-08-17 00:18:20
合計ジャッジ時間 1,777 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,484 KB
testcase_01 AC 71 ms
71,288 KB
testcase_02 AC 71 ms
71,436 KB
testcase_03 AC 71 ms
71,316 KB
testcase_04 AC 71 ms
71,272 KB
testcase_05 AC 72 ms
71,544 KB
testcase_06 AC 72 ms
71,268 KB
testcase_07 AC 71 ms
71,512 KB
testcase_08 AC 71 ms
71,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

A = ["C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#"]

for i in range(len(A)):
    if A[i] == S:
        print (A[i+1])
        break
0