結果

問題 No.1004 サイコロの実装 (2)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-01 19:57:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-11-20 05:08:39
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 WA * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,x,n = map(int,input().split())
ans = n//2 if x%2 else 0
print(ans,ans)
0