結果
| 問題 | No.2481 Shiritori |
| コンテスト | |
| ユーザー |
misonikomipan
|
| 提出日時 | 2023-09-22 22:36:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 438 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-03-30 07:25:48 |
| 合計ジャッジ時間 | 6,065 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 RE * 4 |
ソースコード
ans = ["First", "Second"] N, M = map(int, input().split()) n_same = pow(N, M - 2, 2) print(ans[n_same ^ 1])
misonikomipan