MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / main

Function main

Codeforces_problems/Dice Tower/solution.cpp:22–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20#include<bits/stdc++.h>
21using namespace std;
22int main(){
23 ll t;
24 cin>>t;
25 while(t--){
26 ll sum;
27 cin>>sum;
28 if(sum%14>6||sum/14==0||sum%14==0)cout<<"NO\n";
29 else cout<<"YES\n";
30 }
31 return 0;
32}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected