結果

問題 No.9010 うるう年判定
ユーザー kazu116
提出日時 2019-05-23 14:43:46
言語 Swift
(6.0.3)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 127,996 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-11-30 14:09:10
合計ジャッジ時間 1,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

let input:[Int] = readLine()!.split(separator: " ").map{Int($0)!}
print(input[0] % 4 == 0 ? "Yes" : "No")
0