結果

問題 No.3140 Weird Parentheses Game
ユーザー nekoti
提出日時 2025-05-16 21:25:42
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 25,676 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-16 21:25:45
合計ジャッジ時間 910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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)puts("First");
  else puts("Second");
  return 0;
}
0