結果
問題 |
No.9010 うるう年判定
|
ユーザー |
![]() |
提出日時 | 2017-09-04 15:38:48 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 150 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-06-22 01:10:19 |
合計ジャッジ時間 | 2,017 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
ソースコード
(define n (read)) (if (= (remainder n 4) 0) (if(= (remainder n 100) 0)(if(= (remainder n 400) 0)(print "Yes")(print "No"))(print "Yes"))(print "No") )