結果

問題 No.438 Cwwプログラミング入門
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-04 12:01:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,619 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 66,704 KB
最終ジャッジ日時 2024-10-04 12:02:05
合計ジャッジ時間 10,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 32 ms
52,736 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 33 ms
52,608 KB
testcase_05 AC 33 ms
52,340 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 33 ms
52,736 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 32 ms
52,736 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 34 ms
52,736 KB
testcase_12 AC 33 ms
53,120 KB
testcase_13 AC 33 ms
52,864 KB
testcase_14 AC 32 ms
52,224 KB
testcase_15 AC 33 ms
52,096 KB
testcase_16 AC 34 ms
52,480 KB
testcase_17 AC 34 ms
52,096 KB
testcase_18 AC 33 ms
52,352 KB
testcase_19 AC 33 ms
52,864 KB
testcase_20 AC 33 ms
52,224 KB
testcase_21 WA -
testcase_22 AC 37 ms
52,352 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 36 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 35 ms
52,608 KB
testcase_28 AC 33 ms
51,968 KB
testcase_29 AC 33 ms
52,864 KB
testcase_30 AC 35 ms
52,480 KB
testcase_31 WA -
testcase_32 AC 34 ms
52,096 KB
testcase_33 AC 33 ms
52,352 KB
testcase_34 WA -
testcase_35 AC 34 ms
51,968 KB
testcase_36 AC 34 ms
52,352 KB
testcase_37 AC 34 ms
52,480 KB
testcase_38 AC 34 ms
52,352 KB
testcase_39 WA -
testcase_40 AC 34 ms
52,096 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 35 ms
52,352 KB
testcase_44 WA -
testcase_45 AC 34 ms
52,480 KB
testcase_46 AC 32 ms
52,480 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 34 ms
52,224 KB
testcase_51 AC 34 ms
52,096 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 33 ms
52,352 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 35 ms
52,352 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 34 ms
51,968 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 34 ms
52,480 KB
testcase_66 WA -
testcase_67 AC 34 ms
52,480 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 AC 34 ms
52,224 KB
testcase_79 AC 33 ms
52,224 KB
testcase_80 AC 34 ms
52,608 KB
testcase_81 AC 34 ms
51,968 KB
testcase_82 AC 35 ms
52,352 KB
testcase_83 AC 33 ms
52,352 KB
testcase_84 AC 33 ms
52,352 KB
testcase_85 AC 34 ms
51,968 KB
testcase_86 AC 33 ms
52,736 KB
testcase_87 AC 34 ms
52,224 KB
testcase_88 AC 34 ms
52,480 KB
testcase_89 AC 35 ms
51,968 KB
testcase_90 AC 35 ms
52,352 KB
testcase_91 AC 41 ms
52,736 KB
testcase_92 AC 34 ms
51,968 KB
testcase_93 RE -
testcase_94 RE -
testcase_95 AC 34 ms
52,736 KB
testcase_96 AC 33 ms
52,864 KB
testcase_97 WA -
testcase_98 AC 36 ms
52,608 KB
testcase_99 AC 38 ms
51,968 KB
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a,b):
  if b==0:
    return 1,0
  x1,y1=extgcd(b,a%b)
  x=y1
  y=x1-(a//b)*y1
  return x,y

def solve(A,B,C,fa,fb):
  x,y=extgcd(A,B)
  g=A*x+B*y
  if C%g!=0:
    return list("NO")
  a=A//g
  b=B//g
  c=C//g
  if (fa,fb)==(1,1):
    l=(-c*y+a-1)//a if -c*y>=0 else -((c*y)//a)
    r=(c*x)//b if c*x>=0 else -((-c*x+b-1)//b)
    if l>r:
      return list("NO")
    if a-b>0:
      k=l
    else:
      k=r
    ca=c*x-k*b
    cb=c*y+k*a
    if ca+cb+ca+cb-1>L:
      return list("NO")
    s=["c"]*ca+["w"]*cb+["C"]*(ca+cb-1)
    return s
  if (fa,fb)==(1,0):
    la=(-c*x+b-1)//b if -c*x>=0 else -((c*x)//b)
    lb=(-c*y+a-1)//a if -c*y>=0 else -((c*y)//a)
    k=max(la,lb)
    ca=c*x+k*b
    cb=c*y+k*a
    if ca+cb+ca+cb-1>L:
      return list("NO")
    s=["w"]*cb+["c"]*ca+["C"]*(ca-1)+["W"]*cb
    return s
  if (fa,fb)==(0,1):
    la=(-c*x+b-1)//b if -c*x>=0 else -((c*x)//b)
    lb=(-c*y+a-1)//a if -c*y>=0 else -((c*y)//a)
    k=max(la,lb)
    ca=c*x+k*b
    cb=c*y+k*a
    if ca+cb+ca+cb-1>L:
      return list("NO")
    s=["c"]*ca+["w"]*cb+["C"]*(cb-1)+["W"]*ca
    return s
  if (fa,fb)==(0,0):
    return list("NO")

A,B,C=map(int,input().split())
L=10000

if A==0:
  if C%B==0:
    c=C//B
    if c+c-1<=L:
      print("w"*c+"C"*(c-1))
    else:
      print("NO")
  else:
    print("NO")
  exit()
if B==0:
  if C%A==0:
    c=C//A
    if c+c-1<=L:
      print("c"*c+"C"*(c-1))
    else:
      print("NO")
  else:
    print("NO")
  exit()

s=list("NO")
for fa in [0,1]:
  for fb in [0,1]:
    ns=solve(A,B,C,fa,fb)
    if s==list("NO"):
      s=ns
    elif len(s)>len(ns):
      s=ns

print("".join(s))
0