結果

問題 No.785 色食い虫
ユーザー mlihua09mlihua09
提出日時 2020-09-16 02:30:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,256 KB
最終ジャッジ日時 2024-06-22 02:57:29
合計ジャッジ時間 2,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,248 KB
testcase_01 AC 34 ms
53,256 KB
testcase_02 AC 33 ms
52,364 KB
testcase_03 AC 32 ms
52,472 KB
testcase_04 AC 31 ms
52,060 KB
testcase_05 AC 32 ms
52,444 KB
testcase_06 AC 31 ms
52,676 KB
testcase_07 AC 32 ms
51,824 KB
testcase_08 AC 33 ms
52,484 KB
testcase_09 AC 32 ms
52,984 KB
testcase_10 AC 32 ms
52,620 KB
testcase_11 AC 31 ms
52,300 KB
testcase_12 AC 37 ms
52,404 KB
testcase_13 AC 32 ms
52,000 KB
testcase_14 AC 33 ms
52,396 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 33 ms
51,696 KB
testcase_17 AC 33 ms
52,072 KB
testcase_18 AC 33 ms
52,204 KB
testcase_19 AC 33 ms
52,152 KB
testcase_20 AC 33 ms
51,996 KB
testcase_21 AC 32 ms
51,872 KB
testcase_22 AC 33 ms
52,456 KB
testcase_23 AC 32 ms
52,704 KB
testcase_24 AC 32 ms
52,052 KB
testcase_25 AC 32 ms
51,692 KB
testcase_26 AC 33 ms
52,500 KB
testcase_27 AC 32 ms
52,364 KB
testcase_28 AC 32 ms
52,268 KB
testcase_29 AC 33 ms
52,076 KB
testcase_30 AC 31 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}

R = len(s - set(input().split(',')))

G = len(s - set(input().split(',')))

B = len(s - set(input().split(',')))

print(R ** 2 * G ** 2 * B ** 2)
0