結果

問題 No.1905 PURE PHRASE
ユーザー googol_S0googol_S0
提出日時 2022-04-15 21:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 112,688 KB
最終ジャッジ日時 2024-06-07 02:42:42
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
112,480 KB
testcase_01 AC 115 ms
112,512 KB
testcase_02 AC 113 ms
112,640 KB
testcase_03 AC 113 ms
112,640 KB
testcase_04 AC 113 ms
112,640 KB
testcase_05 AC 115 ms
112,640 KB
testcase_06 AC 114 ms
112,640 KB
testcase_07 AC 116 ms
112,508 KB
testcase_08 AC 120 ms
112,620 KB
testcase_09 AC 113 ms
112,592 KB
testcase_10 AC 113 ms
112,388 KB
testcase_11 AC 115 ms
112,280 KB
testcase_12 AC 115 ms
112,640 KB
testcase_13 AC 114 ms
112,496 KB
testcase_14 AC 114 ms
112,468 KB
testcase_15 AC 116 ms
112,688 KB
testcase_16 AC 115 ms
112,412 KB
testcase_17 AC 114 ms
112,608 KB
testcase_18 AC 114 ms
112,540 KB
testcase_19 AC 113 ms
112,556 KB
testcase_20 AC 116 ms
112,512 KB
testcase_21 AC 114 ms
112,492 KB
testcase_22 AC 114 ms
112,300 KB
testcase_23 AC 115 ms
112,640 KB
testcase_24 AC 116 ms
112,512 KB
testcase_25 AC 115 ms
112,512 KB
testcase_26 AC 115 ms
112,276 KB
testcase_27 AC 115 ms
112,296 KB
testcase_28 AC 115 ms
112,512 KB
testcase_29 AC 114 ms
112,316 KB
testcase_30 AC 119 ms
112,384 KB
testcase_31 AC 114 ms
112,560 KB
testcase_32 AC 113 ms
112,528 KB
testcase_33 AC 115 ms
112,408 KB
testcase_34 AC 115 ms
112,248 KB
testcase_35 AC 115 ms
112,512 KB
testcase_36 AC 115 ms
112,640 KB
testcase_37 AC 114 ms
112,476 KB
testcase_38 AC 115 ms
112,452 KB
testcase_39 AC 120 ms
112,576 KB
testcase_40 AC 114 ms
112,472 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