結果
| 問題 | 
                            No.2775 Nuisance Balls
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Maeda
                         | 
                    
| 提出日時 | 2025-03-17 16:10:38 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 1 ms / 2,000 ms | 
| コード長 | 348 bytes | 
| コンパイル時間 | 309 ms | 
| コンパイル使用メモリ | 24,704 KB | 
| 実行使用メモリ | 7,324 KB | 
| 最終ジャッジ日時 | 2025-03-17 16:10:39 | 
| 合計ジャッジ時間 | 1,751 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 22 | 
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
            
            ソースコード
#include <stdio.h>
void main(void) {
	int n = 0;
	scanf("%d",&n);
	while(n >= 720){
		n = n-720;
		printf("C");
	}
	while(n >= 360){
		n = n-360;
		printf("M");
	}
	while(n >= 180){
		n = n-180;
		printf("S");
	}
	while(n >= 30){
		n = n-30;
		printf("R");
	}
	while(n >= 6){
		n = n-6;
		printf("o");
	}
	while(n > 0){
		n--;
		printf(".");
	}
}
            
            
            
        
            
Maeda