結果

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

ソースコード

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