結果

問題 No.3140 Weird Parentheses Game
ユーザー nekoti
提出日時 2025-05-16 21:28:11
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-05-16 21:28:12
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge1 / 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);
  n>>=1;
  n<<=1;
  if(n%4)puts("First");
  else puts("Second");
  return 0;
}
0