結果
問題 | No.438 Cwwプログラミング入門 |
ユーザー | nebukuro09 |
提出日時 | 2016-10-29 01:23:36 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 836 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 76,928 KB |
実行使用メモリ | 79,488 KB |
最終ジャッジ日時 | 2024-05-03 19:13:44 |
合計ジャッジ時間 | 69,218 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1,079 ms
77,708 KB |
testcase_03 | AC | 1,205 ms
77,844 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,109 ms
77,628 KB |
testcase_07 | AC | 1,095 ms
77,568 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,078 ms
77,580 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1,088 ms
77,952 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1,121 ms
77,952 KB |
testcase_19 | AC | 1,121 ms
77,696 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,094 ms
78,072 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1,136 ms
77,860 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 1,099 ms
77,696 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 1,104 ms
77,696 KB |
testcase_39 | WA | - |
testcase_40 | AC | 1,108 ms
77,696 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 980 ms
77,592 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 1,102 ms
77,696 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 1,125 ms
77,988 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 1,092 ms
77,864 KB |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 1,083 ms
77,592 KB |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | AC | 1,108 ms
77,952 KB |
testcase_66 | WA | - |
testcase_67 | AC | 1,090 ms
78,144 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 | 1,088 ms
77,808 KB |
testcase_79 | AC | 1,066 ms
77,852 KB |
testcase_80 | AC | 1,073 ms
78,132 KB |
testcase_81 | AC | 1,085 ms
77,568 KB |
testcase_82 | AC | 1,110 ms
77,840 KB |
testcase_83 | AC | 1,093 ms
77,824 KB |
testcase_84 | AC | 1,082 ms
77,704 KB |
testcase_85 | AC | 1,105 ms
77,696 KB |
testcase_86 | AC | 1,065 ms
77,600 KB |
testcase_87 | AC | 1,089 ms
77,952 KB |
testcase_88 | WA | - |
testcase_89 | WA | - |
testcase_90 | WA | - |
testcase_91 | WA | - |
testcase_92 | WA | - |
testcase_93 | WA | - |
testcase_94 | AC | 249 ms
76,808 KB |
testcase_95 | WA | - |
testcase_96 | WA | - |
testcase_97 | WA | - |
testcase_98 | AC | 1,088 ms
78,208 KB |
testcase_99 | AC | 1,098 ms
77,472 KB |
testcase_100 | WA | - |
ソースコード
x, y, z = map(int, raw_input().split()) def print_ans(a, b, w): print a, b, w length = 2*(abs(a)+abs(b)-2)*w + w-1 print length if length > 10000: return if a >= 0 and b < 0: ans = ('w'*abs(b) + 'c'*abs(a) + 'C'*(abs(a)-1) + 'W'*abs(b))*w+'C'*(w-1) elif a < 0 and b >= 0: ans = ('c'*abs(a) + 'w'*abs(b) + 'C'*(abs(b)-1) + 'W'*abs(a))*w+'C'*(w-1) else: ans = ('c'*abs(a) + 'w'*abs(b) + 'C'*(abs(a)+abs(b)-1))*w+'C'*(w-1) if len(ans) <= 10000: print ans exit() else: return for a in xrange(-5000, 5001): for b in xrange(-5000, 5001): c = a*x+b*y if z == c == 0: print_ans(a, b, 1) if c > 0 and z % c == 0: if a != 0 or b != 0: print_ans(a, b, z/c) print 'mourennaihasimasenn'