結果

問題 No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N)
ユーザー Asuka
提出日時 2025-09-06 14:05:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 83,040 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2025-09-06 14:06:19
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

n = int(input())
prob = [list(map(int, input().split())) for _ in range(n)]

cnt = 0
for p in permutations([i for i in range(n)]):
    x = prob[p[0]][0]
    for i in range(1, n):
        if x > prob[p[i]][1]:
            break
        x = max(x, prob[p[i]][0])
    else:
        cnt += 1

print(cnt)
        
0