結果
問題 | No.2481 Shiritori |
ユーザー |
![]() |
提出日時 | 2024-12-16 00:21:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 113 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 66,308 KB |
最終ジャッジ日時 | 2024-12-16 00:21:38 |
合計ジャッジ時間 | 2,821 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 RE * 4 |
ソースコード
N, M = map(int, input().split())ans = pow(N, M-2, 2)if ans == 1:print("First")else:print("Second")