結果
| 問題 | 
                            No.138 化石のバージョン
                             | 
                    
| コンテスト | |
| ユーザー | 
                             ldsyb
                         | 
                    
| 提出日時 | 2016-02-29 16:19:43 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 301 bytes | 
| コンパイル時間 | 632 ms | 
| コンパイル使用メモリ | 55,360 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-29 13:51:21 | 
| 合計ジャッジ時間 | 1,708 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 33 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d.%d.%d",&a0,&b0,&c0);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d.%d.%d",&a1,&b1,&c1);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
            
            ソースコード
#include <iostream>
using namespace std;
//scanfキモチィィィィィィィィィィ
int main() {
   int a0,a1,b0,b1,c0,c1;
    scanf("%d.%d.%d",&a0,&b0,&c0);
    scanf("%d.%d.%d",&a1,&b1,&c1);
    cout << (a0 * 1000000 + b0 * 1000 + c0 >= a1 * 1000000 + b1 * 1000 + c1 ? "YES" : "NO") << endl;
}
            
            
            
        
            
ldsyb