結果

問題 No.438 Cwwプログラミング入門
ユーザー convexineqconvexineq
提出日時 2021-02-16 05:02:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 60,336 KB
最終ジャッジ日時 2024-07-23 20:45:32
合計ジャッジ時間 13,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,492 KB
testcase_01 AC 43 ms
59,180 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 42 ms
58,896 KB
testcase_09 AC 38 ms
53,092 KB
testcase_10 AC 43 ms
59,492 KB
testcase_11 AC 44 ms
59,800 KB
testcase_12 AC 42 ms
58,732 KB
testcase_13 WA -
testcase_14 AC 42 ms
57,760 KB
testcase_15 WA -
testcase_16 AC 42 ms
59,536 KB
testcase_17 AC 42 ms
59,096 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
59,412 KB
testcase_21 AC 42 ms
58,252 KB
testcase_22 AC 44 ms
58,720 KB
testcase_23 AC 42 ms
59,044 KB
testcase_24 WA -
testcase_25 AC 43 ms
57,856 KB
testcase_26 AC 42 ms
58,872 KB
testcase_27 WA -
testcase_28 AC 38 ms
52,816 KB
testcase_29 AC 43 ms
58,428 KB
testcase_30 WA -
testcase_31 AC 43 ms
58,364 KB
testcase_32 AC 43 ms
59,688 KB
testcase_33 AC 42 ms
58,780 KB
testcase_34 AC 38 ms
51,824 KB
testcase_35 AC 44 ms
59,540 KB
testcase_36 AC 45 ms
59,948 KB
testcase_37 AC 43 ms
59,096 KB
testcase_38 WA -
testcase_39 AC 42 ms
58,868 KB
testcase_40 WA -
testcase_41 AC 42 ms
60,016 KB
testcase_42 AC 43 ms
58,552 KB
testcase_43 WA -
testcase_44 AC 42 ms
58,764 KB
testcase_45 AC 43 ms
59,116 KB
testcase_46 AC 43 ms
58,432 KB
testcase_47 AC 43 ms
59,380 KB
testcase_48 WA -
testcase_49 AC 42 ms
57,704 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 41 ms
57,888 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 41 ms
58,056 KB
testcase_56 AC 41 ms
58,516 KB
testcase_57 AC 42 ms
58,268 KB
testcase_58 WA -
testcase_59 AC 38 ms
53,912 KB
testcase_60 WA -
testcase_61 AC 37 ms
52,684 KB
testcase_62 WA -
testcase_63 AC 43 ms
57,852 KB
testcase_64 AC 41 ms
58,172 KB
testcase_65 WA -
testcase_66 AC 42 ms
58,640 KB
testcase_67 WA -
testcase_68 AC 39 ms
53,568 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 41 ms
58,912 KB
testcase_72 WA -
testcase_73 AC 41 ms
58,168 KB
testcase_74 AC 42 ms
58,840 KB
testcase_75 WA -
testcase_76 AC 37 ms
52,272 KB
testcase_77 AC 42 ms
58,284 KB
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 41 ms
57,524 KB
testcase_89 AC 42 ms
58,236 KB
testcase_90 WA -
testcase_91 AC 41 ms
59,268 KB
testcase_92 WA -
testcase_93 AC 40 ms
52,552 KB
testcase_94 WA -
testcase_95 AC 42 ms
58,284 KB
testcase_96 WA -
testcase_97 AC 38 ms
53,120 KB
testcase_98 WA -
testcase_99 WA -
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ans(A,B):
    if abs(A)+abs(B) > 5000: return
    cA,wB = "c"*abs(A),"w"*abs(B)
    if A >= 0 and B >= 0:
        return cA+wB+"C"*(A+B-1)
    if A >= 0:
        B = -B
        return wB+cA+"C"*(A-1)+"W"*(-B)
    if B >= 0:
        return cA+wB+"C"*(B-1)+"W"*(-A)

x,y,z = map(int,input().split())
if z==0:
    print("ccW")
    exit()

for A in range(-5000,5001):
    v = z-A*x
    if y and v%y: continue
    if y==0 and v: continue
    if y: B = v//y
    else: B = 0
    s = ans(A,B)
    if s:
        print(s)
        exit()
print("No")
0