結果
問題 |
No.8071 玉虫色着色
|
ユーザー |
|
提出日時 | 2020-07-27 23:50:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-06-28 21:01:49 |
合計ジャッジ時間 | 10,951 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 14 |
ソースコード
import random s=set() L,R,M=map(int,input().split()) degL=[0]*L degR=[0]*R for i in range(M): a,b=map(int,input().split()) assert (a,b) not in s s.add((a,b)) degL[a]+=1 degR[b]+=1 assert 0 not in degL assert 0 not in degR print(0) #WA