結果

問題 No.438 Cwwプログラミング入門
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-04 12:22:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,549 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-10-04 12:22:50
合計ジャッジ時間 7,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 "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 "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 "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 "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 "NO"
    s="c"*ca+"w"*cb+"C"*(cb-1)+"W"*ca
    return s
  if (fa,fb)==(0,0):
    return "NO"

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

if C==0:
  print("ccW")
  exit()
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()

for fa in [0,1]:
  for fb in [0,1]:
    s=solve(A,B,C,fa,fb)
    if s!="NO":
      print(s)
      exit()

print("NO")
0