結果
| 問題 |
No.32 貯金箱の憂鬱
|
| コンテスト | |
| ユーザー |
papyrus
|
| 提出日時 | 2018-06-15 21:55:43 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 109 ms |
| コンパイル使用メモリ | 28,032 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-30 14:58:04 |
| 合計ジャッジ時間 | 682 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 11 |
ソースコード
#include<stdio.h>
int main(void){
int l,m,n;
scanf("%d\n",&l);
scanf("%d\n",&m);
scanf("%d\n",&n);
printf("%d\n",n%25+(m+n/25)%4+(l+((m+n/25)/4)%10));
return 0;
}
papyrus