結果
問題 |
No.1623 三角形の制作
|
ユーザー |
![]() |
提出日時 | 2024-05-02 10:36:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 81,888 KB |
実行使用メモリ | 166,400 KB |
最終ジャッジ日時 | 2024-11-22 23:40:03 |
合計ジャッジ時間 | 55,720 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 1 TLE * 18 |
ソースコード
n = int(input()) r = list(map(int,input().split())) g = list(map(int,input().split())) b = list(map(int,input().split())) c = 0 for i in r: for j in g: for k in b: if i >= j and i >= k and i < j + k: c += 1 print(c)