結果

問題 No.1735 C#
ユーザー MasKoaTSMasKoaTS
提出日時 2021-11-12 21:23:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 86,964 KB
最終ジャッジ日時 2024-05-04 04:45:02
合計ジャッジ時間 1,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
86,880 KB
testcase_01 AC 114 ms
86,880 KB
testcase_02 AC 117 ms
86,784 KB
testcase_03 AC 121 ms
86,736 KB
testcase_04 AC 116 ms
86,964 KB
testcase_05 AC 117 ms
86,716 KB
testcase_06 AC 117 ms
86,740 KB
testcase_07 AC 114 ms
86,600 KB
testcase_08 AC 118 ms
86,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(int,sys.stdin.readline().split())
def getList():
	return list(map(int,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

w = ["C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C"]
s = input()
for i in range(len(w)):
	if(s == w[i]):
		print(w[i+1])
		exit(0)
0