結果
問題 | No.757 チャンパーノウン定数 (2) |
ユーザー | kmjp |
提出日時 | 2018-12-04 23:17:13 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 484 ms |
コンパイル使用メモリ | 76,580 KB |
実行使用メモリ | 92,620 KB |
最終ジャッジ日時 | 2024-07-08 10:38:35 |
合計ジャッジ時間 | 9,657 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 207 ms
84,864 KB |
testcase_01 | AC | 67 ms
75,536 KB |
testcase_02 | AC | 139 ms
78,208 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 66 ms
75,392 KB |
testcase_11 | WA | - |
testcase_12 | AC | 70 ms
76,672 KB |
testcase_13 | AC | 203 ms
79,392 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 67 ms
75,692 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 199 ms
80,512 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
ソースコード
def Sn(n,b): bn = b**n return n*bn - (bn-1)/(b-1) B=int(raw_input()) C=raw_input().strip() D=0 for c in C: D=D*B+(ord(c)-ord('0')) D-=1 L=0 for i in range(20,-1,-1): if Sn(L+(1<<i),B)<=D: L += 1<<i D -= Sn(L,B) L += 1 mo = D % L D = (B**(L-1)) + D/L S="" while D>0: S += str(D%B) D /= B print S[-mo]