結果

問題 No.6 使いものにならないハッシュ
ユーザー mlihua09mlihua09
提出日時 2020-08-31 21:45:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 520 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 79,524 KB
最終ジャッジ日時 2024-09-16 16:58:50
合計ジャッジ時間 3,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,776 KB
testcase_01 AC 39 ms
53,008 KB
testcase_02 AC 83 ms
79,524 KB
testcase_03 AC 51 ms
68,820 KB
testcase_04 AC 55 ms
70,756 KB
testcase_05 AC 54 ms
73,712 KB
testcase_06 AC 62 ms
78,300 KB
testcase_07 AC 55 ms
72,144 KB
testcase_08 AC 60 ms
76,692 KB
testcase_09 AC 56 ms
70,396 KB
testcase_10 AC 40 ms
52,072 KB
testcase_11 AC 55 ms
69,572 KB
testcase_12 AC 65 ms
77,988 KB
testcase_13 AC 56 ms
68,160 KB
testcase_14 AC 57 ms
69,852 KB
testcase_15 AC 63 ms
77,788 KB
testcase_16 AC 58 ms
75,544 KB
testcase_17 AC 66 ms
79,272 KB
testcase_18 AC 74 ms
79,244 KB
testcase_19 AC 62 ms
78,860 KB
testcase_20 AC 62 ms
78,348 KB
testcase_21 AC 49 ms
66,360 KB
testcase_22 AC 62 ms
78,968 KB
testcase_23 AC 63 ms
78,052 KB
testcase_24 AC 64 ms
78,552 KB
testcase_25 AC 57 ms
75,372 KB
testcase_26 AC 67 ms
78,820 KB
testcase_27 AC 62 ms
78,800 KB
testcase_28 AC 56 ms
75,732 KB
testcase_29 AC 66 ms
79,024 KB
testcase_30 AC 70 ms
78,592 KB
testcase_31 AC 67 ms
78,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


K = int(input())

N = int(input())

p = [0] * 2 + [1] * N

for i in range(2, int(N ** 0.5) + 2):
    
    if p[i]:
        
        for j in range(2 * i, N + 1, i):
            
            p[j] = 0
            
P = [i for i in range(K, N + 1) if p[i]]
p = len(P)
for i in range(min(9, p), 0, -1):
    
    for j in range(p - i, -1, -1):
        
        x = [0] * 9
        
        for k in range(j, j + i):
            
            x[P[k] % 9] += 1
        if max(x) == 1:
            print(P[j])
            exit()
0