/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 332.0 KiB
#2 Wrong Answer 1ms 324.0 KiB
#3 Wrong Answer 2ms 332.0 KiB

Code

#include <stdio.h>
int main() {
    
    //SAYED AL MAMUN_LU
    
    int t;
    scanf("%d", &t);
    
    while (t--) {
        int yy = 0, yy1 = 0;
        int n;
        scanf("%d", &n);
        
        int samp[n];
        for (int i = 0; i < n; i++) {
            scanf("%d", &samp[i]);
            yy++;
            yy1 += samp[i];
        }
        
        if (yy1 % 3 == 0) {
            printf("%d\n", yy);
        } 
        else {
            if (yy1 % 3 != 0 && yy > 1) {
                printf("%d\n", yy - 1);
            } else {
                printf("-1\n"); 
            }
        }
    }
    
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1013 Divisible by 3
Contest
Brain booster - 1
Language
C99 (GCC 13.2.0)
Submit At
2023-12-31 15:59:16
Judged At
2024-11-11 03:45:19
Judged By
Score
10
Total Time
2ms
Peak Memory
332.0 KiB