結果

問題 No.1905 PURE PHRASE
ユーザー googol_S0googol_S0
提出日時 2022-04-15 21:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-12-25 00:01:08
合計ジャッジ時間 7,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
112,384 KB
testcase_01 AC 132 ms
112,640 KB
testcase_02 AC 125 ms
112,512 KB
testcase_03 AC 129 ms
112,256 KB
testcase_04 AC 131 ms
112,640 KB
testcase_05 AC 123 ms
112,512 KB
testcase_06 AC 134 ms
112,640 KB
testcase_07 AC 133 ms
112,640 KB
testcase_08 AC 146 ms
112,640 KB
testcase_09 AC 128 ms
112,384 KB
testcase_10 AC 142 ms
112,384 KB
testcase_11 AC 149 ms
112,512 KB
testcase_12 AC 146 ms
112,640 KB
testcase_13 AC 145 ms
112,640 KB
testcase_14 AC 147 ms
112,768 KB
testcase_15 AC 146 ms
112,512 KB
testcase_16 AC 143 ms
112,128 KB
testcase_17 AC 143 ms
112,640 KB
testcase_18 AC 142 ms
112,256 KB
testcase_19 AC 144 ms
112,512 KB
testcase_20 AC 144 ms
112,384 KB
testcase_21 AC 143 ms
112,640 KB
testcase_22 AC 148 ms
112,512 KB
testcase_23 AC 149 ms
112,896 KB
testcase_24 AC 144 ms
112,512 KB
testcase_25 AC 142 ms
112,384 KB
testcase_26 AC 140 ms
112,640 KB
testcase_27 AC 142 ms
112,512 KB
testcase_28 AC 131 ms
112,512 KB
testcase_29 AC 124 ms
112,256 KB
testcase_30 AC 126 ms
112,512 KB
testcase_31 AC 132 ms
112,512 KB
testcase_32 AC 130 ms
112,640 KB
testcase_33 AC 127 ms
112,512 KB
testcase_34 AC 126 ms
112,512 KB
testcase_35 AC 124 ms
112,384 KB
testcase_36 AC 124 ms
112,640 KB
testcase_37 AC 127 ms
112,640 KB
testcase_38 AC 124 ms
112,128 KB
testcase_39 AC 124 ms
112,384 KB
testcase_40 AC 125 ms
112,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
Y=[4360,4905,2616,2943,3270,3488,3924]
X=[round(N*100/Y[i]) for i in range(7)]
B=[]
for i in range(N):
  for j in range(10):
    B.append(A[i])
ANS=[0]*7
for i in range(N*10):
  for j in range(7):
    if B[i]==B[(i+X[j])%(N*10)]:
      ANS[j]+=1
print(chr(ord('A')+ANS.index(max(ANS)))+'4')
0