結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー c-yanc-yan
提出日時 2020-09-11 22:06:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-08 10:15:19
合計ジャッジ時間 1,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 24 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 29 ms
12,032 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 25 ms
11,008 KB
testcase_07 WA -
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 24 ms
11,136 KB
testcase_10 AC 24 ms
11,136 KB
testcase_11 AC 26 ms
12,032 KB
testcase_12 AC 24 ms
11,520 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 23 ms
10,624 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 27 ms
12,288 KB
testcase_35 AC 27 ms
12,160 KB
testcase_36 AC 25 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(map(int, input().split()))
T = list(map(int, input().split()))

m = [[0] * N for _ in range(N)]

s1 = S.count(1)
t1 = T.count(1)
s2 = S.count(2)
t2 = T.count(2)

if s2 > 0 and t2 > 0:
    print(s2 * N + t2 * N - s2 * t2)
elif s2 == 0:
    print(s1 + s2 * N)
elif t2 == 0:
    print(t1 + t2 * N)
elif s2 == 0 and t2 == 0:
    print(s1)
0