結果
問題 | No.3102 Guess and fill in the blank |
ユーザー | fura |
提出日時 | 2023-09-14 05:38:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-07-01 13:14:27 |
合計ジャッジ時間 | 775 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 33 ms
10,496 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
n = int(input()) if n == 1: ans = 6 elif n == 2: ans = 0 elif n == 3: # 3b + 3d + 3e = 1290 # 7a + 3b + 3c + 5d + 5e = 4140 # 4a + 2b + 7c + d + 2e = 3520 # 5a + 3b + 8c + 2d + 2e = 4510 # 5a + 3b + c + 5d + 3e = 3320 ans = 915 elif n == 4: ans = 0 else: ans = 0 print(ans)