top of page

CCC 2014 J4: Party Invitation

This is a math question.

The original list is from 1 to N.

Then remove elements that are multiple cn_i from the list.

N = int(input())
list1 = []
for i in range(1, N+1, 1):
    list1.append(i)

M = int(input())
for i in range(M):
    cn = int(input())
    list2 = []
    for j in range(len(list1)):
        if (j+1)%cn != 0:
            list2.append(list1[j])
    list1 = list2

for x in list1:
    print(x)


Recent Posts

See All

CCC '24 J5 - Harvest Waterloo

#include<iostream> #include <vector> #include <algorithm> #include <cmath> #include <stack> using namespace std; int main() { int r, c,...

CCC '24 J4 - Troublesome Keys

s1 = input() s2 = input() silly = '' silly_o = '' quiete = '-' i = 0 j = 0 while i < len(s1) and j < len(s2): if s1[i] != s2[j]: if...

CCC '22 J5 - Square Pool

#include<iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; bool rowcom(pair<int, int> a, pair<int,...

One-time Donations
I hope I can solve all CCC problems!,
Please e-transfer cccottawa862008@gmail.com

Subscribe to AIOICode newsletter

I'm a title. ​Click here to edit me.

Thanks for submitting!

  • Twitter
  • Facebook
  • Linkedin

© 2023 by AIOICode.

bottom of page