#8387: 兩光法師占卜術


noob01 (怒博1號)


#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  int a=0,b=0;
  while(scanf("%d%d",&a,&b)){
  if((a*2+b)%3==0)
  printf("普通\n");
  else if((a*2+b)%3==1)
  printf("吉\n");
  else
  printf("大吉\n");
}
  return 0 ;
}
為什麼這樣一值TLE呢?
 
第 10 測資點(0%): TLE (1s)
執行逾時
Killed