結果

問題 No.3140 Weird Parentheses Game
ユーザー nekoti
提出日時 2025-05-16 21:26:25
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 25,932 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-16 21:26:27
合計ジャッジ時間 795 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[1001];scan=scanf("%s",s);
  if(n%4)puts("First");
  else puts("Second");
  return 0;
}
0