結果
問題 | No.1945 Go Push! |
ユーザー |
![]() |
提出日時 | 2022-08-20 13:18:40 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 320 ms |
コンパイル使用メモリ | 28,416 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 06:19:03 |
合計ジャッジ時間 | 2,013 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include<stdio.h> int main() { int n; scanf("%d", &n); int i; int a[200005]; for (i = 0; i < n; i++) scanf("%d", &a[i]); if (n % 2 > 0) printf("First\n"); else printf("Second\n"); return 0; }