結果

問題 No.799 赤黒かーどげぇむ
ユーザー boya978boya978
提出日時 2019-09-18 21:13:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,593 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-16 02:47:26
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 1,593 ms
12,160 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 59 ms
11,008 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 63 ms
10,880 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 42 ms
11,008 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 963 ms
11,904 KB
testcase_16 AC 1,522 ms
12,032 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 124 ms
11,008 KB
testcase_19 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d = map(int,input().split())
red = [i for i in range(a,b+1)]
blk = [i for i in range(c,d+1)]
array=[]

for i in red:
    tmp=[i]
    for j in blk:
        tmp.append(j)
        if not tmp in array and tmp[0]!=tmp[1]:
            array.append(tmp)
        tmp=[i]
            
print(len(array))
0