結果
問題 |
No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N)
|
ユーザー |
|
提出日時 | 2025-09-06 14:00:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 349 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 82,124 KB |
実行使用メモリ | 76,628 KB |
最終ジャッジ日時 | 2025-09-06 14:01:01 |
合計ジャッジ時間 | 2,849 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 WA * 4 |
ソースコード
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 + 1, prob[p[i]][0]) else: cnt += 1 print(cnt)