結果
| 問題 | No.1882 Areas of Triangle |
| ユーザー |
ripity
|
| 提出日時 | 2022-03-20 11:50:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 519 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 25,364 KB |
| 最終ジャッジ日時 | 2026-04-26 13:57:58 |
| 合計ジャッジ時間 | 4,843 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 5 |
| other | WA * 24 |
ソースコード
N,K = map(int,input().split())
a = list(map(int,input().split()))
cnt = 0
for x in a:
cnt += 1
print(N,cnt)
assert N == cnt
ripity