結果

問題 No.3140 Weird Parentheses Game
ユーザー nekoti
提出日時 2025-05-16 21:22:34
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 25,808 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-16 21:22:37
合計ジャッジ時間 998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(void)
{
  int scan;//scanf警告用
  int n;scan=scanf("%d",&n);
  //char s[101];scan=scanf("%s",s);
  if(n%4)printf("First");
  else printf("Second");
  return 0;
}
0