Beginner Free Contest 2 - DEMSO

View as PDF

Submit solution

Points: 0.07 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.


Comments

Please read the guidelines before commenting.



  • 0
    kietjumper  commented on Aug. 21, 2024, 3:05 a.m. edit 3

    ! #include<bits/stdc++.h> ! using namespace std; int main() { long double n; long double countPlus = 0; long double countMinus = 0; long double a[100010]; cin >> n; for (int i = 0; i<n; ++i){ if (a[i] < 0){ countMinus ++; } else if (a[i] > 0){ countPlus++; } } cout<< countMinus << " " << countPlus; }


  • 0
    Duonggiaphat  commented on July 5, 2024, 3:47 p.m.

    ae lưu ý số 0 là số ko âm và ko dương nha


  • 0
    HieuTrong  commented on June 27, 2024, 4:07 p.m.

    Lạ vậy mình code chạy đúng và add vào đây thì 0/10


    • -2
      Groot  commented on July 5, 2024, 3:29 p.m.

      có 2 cách cơ bản:

      cách 1: dùng kiểu long double

      cách 2: dùng string, kiểm tra nếu s[0] = '0' thì bỏ qua, nếu s[0] ='-' thì là số âm, ngược lại thì là số dương


  • -4
    Helectric  commented on Nov. 22, 2023, 1:33 a.m.

    bài này dùng quy hoạch động, dfs khử đệ quy bằng stack, suffix array để fulltesst nhé các bạn :)


  • 9
    L3_2023_05_NguyenMinhCanh  commented on July 8, 2023, 3:22 p.m.

    bài này dùng double là được nha mọi người


  • 2
    VVWG  commented on April 1, 2023, 7:39 a.m.

    bài hay đấy cảm ơn tác giả