結果

問題 No.438 Cwwプログラミング入門
ユーザー GuestGuest
提出日時 2019-07-28 11:48:30
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 10,900 KB
実行使用メモリ 8,292 KB
最終ジャッジ日時 2023-09-15 11:28:09
合計ジャッジ時間 9,243 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
8,124 KB
testcase_01 AC 22 ms
8,136 KB
testcase_02 AC 19 ms
8,160 KB
testcase_03 AC 19 ms
8,172 KB
testcase_04 AC 19 ms
8,164 KB
testcase_05 AC 19 ms
8,140 KB
testcase_06 AC 19 ms
8,148 KB
testcase_07 AC 19 ms
8,144 KB
testcase_08 AC 18 ms
8,164 KB
testcase_09 AC 20 ms
8,128 KB
testcase_10 AC 19 ms
8,156 KB
testcase_11 WA -
testcase_12 AC 19 ms
8,176 KB
testcase_13 AC 19 ms
7,792 KB
testcase_14 AC 19 ms
7,920 KB
testcase_15 AC 19 ms
7,876 KB
testcase_16 AC 19 ms
8,132 KB
testcase_17 AC 19 ms
8,220 KB
testcase_18 AC 19 ms
8,152 KB
testcase_19 AC 19 ms
8,144 KB
testcase_20 AC 19 ms
8,184 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 19 ms
7,932 KB
testcase_24 AC 18 ms
8,224 KB
testcase_25 AC 19 ms
8,224 KB
testcase_26 WA -
testcase_27 AC 19 ms
8,076 KB
testcase_28 AC 27 ms
8,224 KB
testcase_29 AC 23 ms
8,180 KB
testcase_30 AC 19 ms
8,136 KB
testcase_31 WA -
testcase_32 AC 20 ms
8,184 KB
testcase_33 AC 20 ms
7,908 KB
testcase_34 AC 20 ms
8,276 KB
testcase_35 AC 21 ms
8,080 KB
testcase_36 AC 21 ms
8,168 KB
testcase_37 AC 20 ms
8,168 KB
testcase_38 AC 19 ms
8,272 KB
testcase_39 WA -
testcase_40 AC 19 ms
8,200 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 19 ms
8,224 KB
testcase_44 AC 20 ms
8,140 KB
testcase_45 AC 22 ms
8,172 KB
testcase_46 AC 20 ms
8,172 KB
testcase_47 AC 19 ms
8,276 KB
testcase_48 WA -
testcase_49 AC 18 ms
8,208 KB
testcase_50 AC 19 ms
8,176 KB
testcase_51 AC 19 ms
8,168 KB
testcase_52 AC 19 ms
8,184 KB
testcase_53 WA -
testcase_54 AC 19 ms
8,224 KB
testcase_55 AC 19 ms
8,192 KB
testcase_56 AC 19 ms
8,148 KB
testcase_57 AC 19 ms
8,228 KB
testcase_58 AC 19 ms
7,864 KB
testcase_59 AC 19 ms
8,080 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 19 ms
8,156 KB
testcase_63 AC 19 ms
8,284 KB
testcase_64 AC 19 ms
8,168 KB
testcase_65 AC 19 ms
8,168 KB
testcase_66 WA -
testcase_67 AC 20 ms
8,184 KB
testcase_68 AC 19 ms
7,792 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 19 ms
8,220 KB
testcase_72 WA -
testcase_73 AC 20 ms
8,284 KB
testcase_74 AC 19 ms
8,284 KB
testcase_75 WA -
testcase_76 AC 19 ms
8,220 KB
testcase_77 AC 19 ms
8,212 KB
testcase_78 AC 19 ms
7,848 KB
testcase_79 AC 19 ms
7,920 KB
testcase_80 AC 19 ms
8,152 KB
testcase_81 AC 19 ms
8,176 KB
testcase_82 AC 19 ms
8,288 KB
testcase_83 AC 19 ms
8,172 KB
testcase_84 AC 19 ms
8,280 KB
testcase_85 AC 20 ms
8,252 KB
testcase_86 AC 19 ms
8,124 KB
testcase_87 AC 19 ms
8,152 KB
testcase_88 AC 23 ms
8,280 KB
testcase_89 AC 22 ms
8,256 KB
testcase_90 AC 22 ms
8,232 KB
testcase_91 AC 26 ms
8,152 KB
testcase_92 AC 22 ms
8,132 KB
testcase_93 AC 27 ms
7,836 KB
testcase_94 WA -
testcase_95 AC 19 ms
7,792 KB
testcase_96 AC 19 ms
8,140 KB
testcase_97 AC 19 ms
8,292 KB
testcase_98 AC 19 ms
7,780 KB
testcase_99 AC 19 ms
8,216 KB
testcase_100 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z = map(int, input().split())
code = 'NO'
minA = None
minB = None
min = 5000

for a in range(-5000, 5001):
  if y == 0:
    b = float(z - a * x)
  else:
    b = (z - a * x) / y
  if b.is_integer() == True and abs(a) + abs(b) <= 5000 and min >= abs(a) + abs(b):
    b = int(b)
    min = abs(a) + abs(b)
    minA = a
    minB = b
    
a = minA
b = minB

if a == None and b == None:
  code = 'NO'
elif a <= 0 and b <= 0 and abs(a) + abs(b) <= 4997:
  code = 'c' * (abs(a) + 2) + 'w' * abs(b) + 'W' * (abs(a) + abs(b) + 1)
elif a >= 0 and b >= 0:
  code = 'c'*a + 'w'*b +'C'*(a+b-1) 
elif a <= 0 and b >= 0:
  code = 'c' * abs(a) + 'w' * b + 'C' * (b - 1) + 'W' * abs(a)
elif a >= 0 and b <= 0:
  code = 'c' * a + 'w' *  abs(b) + 'C' * (a - 1) + 'W' *  abs(b)
else:
  print('error')

if code == 'NO':
  print('NO')
else:
  print(code)
0